diff options
author | 2000-04-04 13:44:51 +0000 | |
---|---|---|
committer | 2000-04-04 13:44:51 +0000 | |
commit | a4c78e883df48ab475ab8db37e042b1ed7bbb995 (patch) | |
tree | 9bb32bf82118e01a976b40f6a82d4dd785638e26 | |
parent | Verbiage fix. (diff) | |
download | wireguard-openbsd-a4c78e883df48ab475ab8db37e042b1ed7bbb995.tar.xz wireguard-openbsd-a4c78e883df48ab475ab8db37e042b1ed7bbb995.zip |
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'.
-rw-r--r-- | etc/netstart | 4 |
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 |