From e99816f1ebad5cf16b82502cbf0bc3ef2b0ca835 Mon Sep 17 00:00:00 2001 From: Luigi Rizzo Date: Sat, 5 Dec 2009 08:32:12 +0000 Subject: [PATCH] fix build with VNET enabled Reported by: David Wolfskill --- sys/netinet/ipfw/ip_fw2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netinet/ipfw/ip_fw2.c b/sys/netinet/ipfw/ip_fw2.c index 54cf817696b..8ff7ea0999f 100644 --- a/sys/netinet/ipfw/ip_fw2.c +++ b/sys/netinet/ipfw/ip_fw2.c @@ -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); }