svn commit: r200113 - head/sys/netinet/ipfw

Luigi Rizzo luigi at FreeBSD.org
Sat Dec 5 08:32:13 UTC 2009


Author: luigi
Date: Sat Dec  5 08:32:12 2009
New Revision: 200113
URL: http://svn.freebsd.org/changeset/base/200113

Log:
  fix build with VNET enabled
  
  Reported by: David Wolfskill

Modified:
  head/sys/netinet/ipfw/ip_fw2.c

Modified: head/sys/netinet/ipfw/ip_fw2.c
==============================================================================
--- head/sys/netinet/ipfw/ip_fw2.c	Fri Dec  4 21:53:20 2009	(r200112)
+++ head/sys/netinet/ipfw/ip_fw2.c	Sat Dec  5 08:32:12 2009	(r200113)
@@ -2597,7 +2597,7 @@ do {									\
 		 * XXX should not happen here, but optimized out in
 		 * the caller.
 		 */
-		if (fw_one_pass) {
+		if (V_fw_one_pass) {
 			IPFW_RUNLOCK(chain);
 			return (IP_FW_PASS);
 		}


More information about the svn-src-head mailing list