diff options
author | Steven Barth <cyrus@openwrt.org> | 2008-09-16 22:01:14 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2008-09-16 22:01:14 +0000 |
commit | 954c24c5ed6d5e0ab96eb9c5de706129dafef887 (patch) | |
tree | 2d0529df624ad39ae6558b45ab857c5c08aa9f1c /package/firewall | |
parent | 551bee5fa6aa7043fcfeb3e4117e5ab88f7328d4 (diff) | |
download | upstream-954c24c5ed6d5e0ab96eb9c5de706129dafef887.tar.gz upstream-954c24c5ed6d5e0ab96eb9c5de706129dafef887.tar.bz2 upstream-954c24c5ed6d5e0ab96eb9c5de706129dafef887.zip |
Fixed a typo in the firewall scripts
SVN-Revision: 12616
Diffstat (limited to 'package/firewall')
-rwxr-xr-x | package/firewall/files/uci_firewall.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/firewall/files/uci_firewall.sh b/package/firewall/files/uci_firewall.sh index 85af805b7e..22731af98e 100755 --- a/package/firewall/files/uci_firewall.sh +++ b/package/firewall/files/uci_firewall.sh @@ -49,7 +49,7 @@ create_zone() { $IPTABLES -A OUTPUT -j zone_$1_$4 $IPTABLES -N zone_$1_nat -t nat $IPTABLES -N zone_$1_prerouting -t nat - [ "$6" == "1" ] && $IPTABLES -t nat -A POSTROUTING -j zone_$2_nat + [ "$6" == "1" ] && $IPTABLES -t nat -A POSTROUTING -j zone_$1_nat } addif() { |