diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-05-26 10:51:01 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-05-26 10:51:01 +0000 |
commit | 7e2361d46a811aaf38abe7b170494932adcd107a (patch) | |
tree | 1f06d68bf438d13550d32e1a5306463770eb2e5d /package/firewall | |
parent | a94930dbbbe4a7f616963224b0336aeb16600495 (diff) | |
download | upstream-7e2361d46a811aaf38abe7b170494932adcd107a.tar.gz upstream-7e2361d46a811aaf38abe7b170494932adcd107a.tar.bz2 upstream-7e2361d46a811aaf38abe7b170494932adcd107a.zip |
fix typo in the uci firewall script
SVN-Revision: 16076
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 5ea5007de7..263a33d153 100755 --- a/package/firewall/files/uci_firewall.sh +++ b/package/firewall/files/uci_firewall.sh @@ -93,7 +93,7 @@ addif() { $IPTABLES -I zone_${zone}_nat 1 -t nat -o "$ifname" -j MASQUERADE $IPTABLES -I PREROUTING 1 -t nat -i "$ifname" -j zone_${zone}_prerouting $IPTABLES -A forward -i "$ifname" -j zone_${zone}_forward - $IPTABLES -t raw -I PREROUTING 1 -i "$ifname" -j zone_${name}_notrack + $IPTABLES -t raw -I PREROUTING 1 -i "$ifname" -j zone_${zone}_notrack uci_set_state firewall core "${network}_ifname" "$ifname" uci_set_state firewall core "${network}_zone" "$zone" } |