From owner-cvs-sys Wed May 22 10:23:23 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA11864 for cvs-sys-outgoing; Wed, 22 May 1996 10:23:23 -0700 (PDT) Received: (from wollman@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA11842; Wed, 22 May 1996 10:23:11 -0700 (PDT) Date: Wed, 22 May 1996 10:23:11 -0700 (PDT) From: Garrett Wollman Message-Id: <199605221723.KAA11842@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/netinet ip_output.c raw_ip.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wollman 96/05/22 10:23:10 Modified: sys/netinet ip_output.c raw_ip.c Log: Conditionalize calls to IPFW code on COMPAT_IPFW. This is done slightly unconventionally: If COMPAT_IPFW is not defined, or if it is defined to 1, enable; otherwise, disable. This means that these changes actually have no effect on anyone at the moment. (It just makes it easier for me to keep my code in sync.) In the future, the `not defined' part of the hack should be eliminated, but doing this now would require everyone to change their config files. The same conditionals need to be made in ip_input.c as well for this to ave any useful effect, but I'm not ready to do that right now. Revision Changes Path 1.39 +10 -1 src/sys/netinet/ip_output.c 1.31 +10 -1 src/sys/netinet/raw_ip.c