diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-10 23:11:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-10 23:11:12 +0000 |
commit | c4e28761c16ad54657874f4a6a1f99cd0d924210 (patch) | |
tree | 351c684fee333e92aa9d08221ed3f3763ed61f22 /net-firewall/iptables/files | |
parent | Bump, and remove a few older versions. (diff) | |
download | gentoo-2-c4e28761c16ad54657874f4a6a1f99cd0d924210.tar.gz gentoo-2-c4e28761c16ad54657874f4a6a1f99cd0d924210.tar.bz2 gentoo-2-c4e28761c16ad54657874f4a6a1f99cd0d924210.zip |
fix typo reported by Jetchko Jekov in #101978
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-firewall/iptables/files')
-rwxr-xr-x | net-firewall/iptables/files/iptables-1.3.2.init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-firewall/iptables/files/iptables-1.3.2.init b/net-firewall/iptables/files/iptables-1.3.2.init index e58d2b770145..c8bf8da2a007 100755 --- a/net-firewall/iptables/files/iptables-1.3.2.init +++ b/net-firewall/iptables/files/iptables-1.3.2.init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.3.2.init,v 1.1 2005/07/12 02:38:29 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/files/iptables-1.3.2.init,v 1.2 2005/08/10 23:11:12 vapier Exp $ opts="save reload panic" @@ -79,7 +79,7 @@ stop() { reload() { checkkernel || return 1 ebegin "Flushing firewall" - for a in $(<${iptabes_proc}) ; do + for a in $(<${iptables_proc}) ; do ${iptables_bin} -F -t $a ${iptables_bin} -X -t $a done |