diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2001-04-13 01:40:27 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2001-04-13 01:40:27 +0000 |
commit | 9aaff3ecb131856f23659c7785b1c980282ebdf8 (patch) | |
tree | b099d39537e94bf3c355434e18f2e99f8944ea3e /etc/rc.firewall6 | |
parent | 1e64929334857078402f8d9d2cf000518e8790c1 (diff) | |
download | FreeBSD-src-9aaff3ecb131856f23659c7785b1c980282ebdf8.zip FreeBSD-src-9aaff3ecb131856f23659c7785b1c980282ebdf8.tar.gz |
With the recent change to ip6fw, it is safe to return to using ${fw6cmd}
which may include the -q flag.
Diffstat (limited to 'etc/rc.firewall6')
-rw-r--r-- | etc/rc.firewall6 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/rc.firewall6 b/etc/rc.firewall6 index a83daed..646d3d1 100644 --- a/etc/rc.firewall6 +++ b/etc/rc.firewall6 @@ -253,8 +253,7 @@ case ${ipv6_firewall_type} in ;; *) if [ -r "${ipv6_firewall_type}" ]; then - # Can't use ${fw6cmd} as ip6fw doesn't support -q with a file - /sbin/ip6fw ${ipv6_firewall_flags} ${ipv6_firewall_type} + ${fw6cmd} ${ipv6_firewall_flags} ${ipv6_firewall_type} fi ;; esac |