From owner-svn-src-head@FreeBSD.ORG Sat Dec 5 08:32:13 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D8671065670; Sat, 5 Dec 2009 08:32:13 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1CB2D8FC0C; Sat, 5 Dec 2009 08:32:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nB58WCkS078842; Sat, 5 Dec 2009 08:32:12 GMT (envelope-from luigi@svn.freebsd.org) Received: (from luigi@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nB58WCuI078841; Sat, 5 Dec 2009 08:32:12 GMT (envelope-from luigi@svn.freebsd.org) Message-Id: <200912050832.nB58WCuI078841@svn.freebsd.org> From: Luigi Rizzo Date: Sat, 5 Dec 2009 08:32:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r200113 - head/sys/netinet/ipfw X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Dec 2009 08:32:13 -0000 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); }