svn commit: r193892 - head/sys/netipx

Bjoern A. Zeeb bz at FreeBSD.org
Wed Jun 10 09:28:51 UTC 2009


Author: bz
Date: Wed Jun 10 09:28:50 2009
New Revision: 193892
URL: http://svn.freebsd.org/changeset/base/193892

Log:
  Put the variable declarations for TCPDEBUG under #ifdef INET as well.
  The implementation already has this right.
  
  Reviewed by:	rwatson

Modified:
  head/sys/netipx/spx_debug.c

Modified: head/sys/netipx/spx_debug.c
==============================================================================
--- head/sys/netipx/spx_debug.c	Wed Jun 10 09:07:05 2009	(r193891)
+++ head/sys/netipx/spx_debug.c	Wed Jun 10 09:28:50 2009	(r193892)
@@ -82,11 +82,13 @@ __FBSDID("$FreeBSD$");
 #define	SANAMES
 #include <netipx/spx_debug.h>
 
+#ifdef INET
 #ifdef TCPDEBUG
 static	int spxconsdebug = 0;
 static	struct spx_debug spx_debug[SPX_NDEBUG];
 static	int spx_debx;
 #endif
+#endif
 
 /*
  * spx debug routines


More information about the svn-src-all mailing list