svn commit: r208043 - head/sys/netinet6

Kip Macy kmacy at FreeBSD.org
Thu May 13 19:47:36 UTC 2010


Author: kmacy
Date: Thu May 13 19:47:36 2010
New Revision: 208043
URL: http://svn.freebsd.org/changeset/base/208043

Log:
  do a proper fix
  
  Pointed out by: np@
  
  MFC after:	3 days

Modified:
  head/sys/netinet6/ip6_input.c

Modified: head/sys/netinet6/ip6_input.c
==============================================================================
--- head/sys/netinet6/ip6_input.c	Thu May 13 19:36:13 2010	(r208042)
+++ head/sys/netinet6/ip6_input.c	Thu May 13 19:47:36 2010	(r208043)
@@ -116,7 +116,7 @@ __FBSDID("$FreeBSD$");
 
 #ifdef FLOWTABLE
 #include <net/flowtable.h>
-extern int VNET_NAME(ip6_output_flowtable_size) __section(VNET_SETNAME);
+VNET_DECLARE(int, ip6_output_flowtable_size);
 #define	V_ip6_output_flowtable_size	VNET(ip6_output_flowtable_size)
 #endif
 


More information about the svn-src-all mailing list