Date: Sat, 5 Dec 2009 08:32:12 +0000 (UTC) From: Luigi Rizzo <luigi@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r200113 - head/sys/netinet/ipfw Message-ID: <200912050832.nB58WCuI078841@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200912050832.nB58WCuI078841>