From owner-svn-src-head@FreeBSD.ORG Tue Apr 6 12:28:08 2010 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 993E9106566B; Tue, 6 Apr 2010 12:28:08 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 886A48FC0A; Tue, 6 Apr 2010 12:28:08 +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 o36CS8Sc064143; Tue, 6 Apr 2010 12:28:08 GMT (envelope-from ume@svn.freebsd.org) Received: (from ume@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o36CS86h064141; Tue, 6 Apr 2010 12:28:08 GMT (envelope-from ume@svn.freebsd.org) Message-Id: <201004061228.o36CS86h064141@svn.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 6 Apr 2010 12:28:08 +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: r206266 - head/sbin/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: Tue, 06 Apr 2010 12:28:08 -0000 Author: ume Date: Tue Apr 6 12:28:08 2010 New Revision: 206266 URL: http://svn.freebsd.org/changeset/base/206266 Log: Set net.inet6.ip6.fw.enable as well. Modified: head/sbin/ipfw/ipfw2.c Modified: head/sbin/ipfw/ipfw2.c ============================================================================== --- head/sbin/ipfw/ipfw2.c Tue Apr 6 10:58:40 2010 (r206265) +++ head/sbin/ipfw/ipfw2.c Tue Apr 6 12:28:08 2010 (r206266) @@ -1740,6 +1740,8 @@ ipfw_sysctl_handler(char *av[], int whic } else if (_substrcmp(*av, "firewall") == 0) { sysctlbyname("net.inet.ip.fw.enable", NULL, 0, &which, sizeof(which)); + sysctlbyname("net.inet6.ip6.fw.enable", NULL, 0, + &which, sizeof(which)); } else if (_substrcmp(*av, "one_pass") == 0) { sysctlbyname("net.inet.ip.fw.one_pass", NULL, 0, &which, sizeof(which));