diff options
author | Travis Kemen <thepeople@openwrt.org> | 2008-08-16 06:33:22 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2008-08-16 06:33:22 +0000 |
commit | e1136282239d6a0fbe5098137b21407b6b140251 (patch) | |
tree | 2d14b538154cf6ff868a467f262fc4da155cfe5c /package | |
parent | 4a9e00347189546b81e405b9cdcc096e6832e471 (diff) | |
download | master-187ad058-e1136282239d6a0fbe5098137b21407b6b140251.tar.gz master-187ad058-e1136282239d6a0fbe5098137b21407b6b140251.tar.bz2 master-187ad058-e1136282239d6a0fbe5098137b21407b6b140251.zip |
fix typo, proto should be protocol
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12318 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-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 27e9dd71d6..88e6976dac 100755 --- a/package/firewall/files/uci_firewall.sh +++ b/package/firewall/files/uci_firewall.sh @@ -222,7 +222,7 @@ fw_redirect() { config_get protocol $1 protocol [ -z "$src" -o -z "$dest_ip" ] && { \ echo "redirect needs src and dest_ip"; return ; } - [ -n "$dest_port" -a -z "$proto" ] && { \ + [ -n "$dest_port" -a -z "$protocol" ] && { \ echo "dport may only be used it proto is defined"; return; } $IPTABLES -A zone_${src}_prerouting -t nat \ ${protocol:+-p $protocol} \ |