From owner-cvs-src@FreeBSD.ORG Thu Aug 19 17:59:26 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5CEA16A4CE; Thu, 19 Aug 2004 17:59:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF48E43D3F; Thu, 19 Aug 2004 17:59:26 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7JHxQfG042638; Thu, 19 Aug 2004 17:59:26 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7JHxQnC042637; Thu, 19 Aug 2004 17:59:26 GMT (envelope-from andre) Message-Id: <200408191759.i7JHxQnC042637@repoman.freebsd.org> From: Andre Oppermann Date: Thu, 19 Aug 2004 17:59:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw2.c ip_fw_pfil.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Aug 2004 17:59:27 -0000 andre 2004-08-19 17:59:26 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c ip_fw_pfil.c Log: Do not unconditionally ignore IPDIVERT and IPFIREWALL_FORWARD when building the ipfw KLD. For IPFIREWALL_FORWARD this does not have any side effects. If the module has it but not the kernel it just doesn't do anything. For IPDIVERT the KLD will be unloadable if the kernel doesn't have IPDIVERT compiled in too. However this is the least disturbing behaviour. The user can just recompile either module or the kernel to match the other one. The access to the machine is not denied if ipfw refuses to load. Revision Changes Path 1.72 +0 -2 src/sys/netinet/ip_fw2.c 1.3 +0 -2 src/sys/netinet/ip_fw_pfil.c