From: millert Date: Tue, 4 Apr 2000 13:44:51 +0000 (+0000) Subject: Remove the -E flag from ipf as it is implicitly enabled and using X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=a4c78e883df48ab475ab8db37e042b1ed7bbb995;p=openbsd Remove the -E flag from ipf as it is implicitly enabled and using the -E flag here causes the kernel to printf 'IP Filter: already initialized'. --- diff --git a/etc/netstart b/etc/netstart index 9bfd842b679..df2f633a322 100644 --- a/etc/netstart +++ b/etc/netstart @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: netstart,v 1.67 2000/03/18 19:45:45 deraadt Exp $ +# $OpenBSD: netstart,v 1.68 2000/04/04 13:44:51 millert Exp $ # Returns true if $1 contains only alphanumerics isalphanumeric() { @@ -30,7 +30,7 @@ fi # Configure the IP filter before configuring network interfaces if [ X"${ipfilter}" = X"YES" -a -f "${ipfilter_rules}" ]; then echo 'configuring IP filter' - ipf -Fa -f ${ipfilter_rules} -E + ipf -Fa -f ${ipfilter_rules} else ipfilter=NO fi