summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-04-04 13:44:52 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-04-04 13:44:52 +0000
commitf821e2f2ef16cf37eb3640c2f3c4fd263e917430 (patch)
treed563cd4fcd01c317aca18dabc736b46bd2af1fed /etc
parente7e853fbc50b8c1be57a43da0c64b9bcdca9dd97 (diff)
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'.
Diffstat (limited to 'etc')
-rw-r--r--etc/netstart4
1 files changed, 2 insertions, 2 deletions
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