svn commit: r301657 - stable/10/usr.sbin/bsnmpd/tools/libbsnmptools

Garrett Cooper ngie at FreeBSD.org
Wed Jun 8 17:34:39 UTC 2016


Author: ngie
Date: Wed Jun  8 17:34:37 2016
New Revision: 301657
URL: https://svnweb.freebsd.org/changeset/base/301657

Log:
  MFC r299701:
  
  Move _bsnmptools_debug extern from bsnmpmap.c to bsnmptools.h
  
  It was used in bsnmpmap.c but was stored in bsnmptools.c; moving the extern
  to the header allows us to cover all of our bases for the variable, and allows
  _bsnmptools_debug to be used in the future elsewhere -- not just bsnmpmap.c.

Modified:
  stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpmap.c
  stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.h
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpmap.c
==============================================================================
--- stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpmap.c	Wed Jun  8 17:32:41 2016	(r301656)
+++ stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpmap.c	Wed Jun  8 17:34:37 2016	(r301657)
@@ -47,7 +47,6 @@
 #include "bsnmptc.h"
 #include "bsnmptools.h"
 
-extern int _bsnmptools_debug;
 #define	DEBUG	if (_bsnmptools_debug) fprintf
 
 /* Allocate memory and initialize list. */

Modified: stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.h
==============================================================================
--- stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.h	Wed Jun  8 17:32:41 2016	(r301656)
+++ stable/10/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.h	Wed Jun  8 17:34:37 2016	(r301657)
@@ -231,7 +231,7 @@ extern struct snmp_toolinfo snmptool;
 #define	SET_NONREP(ctx, i)	(((ctx)->flags |= (((i) & 0xff) << 24)))
 #define	GET_NONREP(ctx)		(((ctx)->flags & NONREP_BITS) >> 24)
 
-
+extern int _bsnmptools_debug;
 extern const struct asn_oid IsoOrgDod_OID;
 
 int snmptool_init(struct snmp_toolinfo *);


More information about the svn-src-all mailing list