diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-20 03:39:55 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-20 03:39:55 +0000 |
commit | 25a5fab34cf89baeed19155baad430ccf6c56709 (patch) | |
tree | 999d6e2dfdb10d31c72795dd1ae4923a03b43eae /package/firewall | |
parent | 02a47e971eb2c1376c613e6b35bd9c1ea0a9309d (diff) | |
download | upstream-25a5fab34cf89baeed19155baad430ccf6c56709.tar.gz upstream-25a5fab34cf89baeed19155baad430ccf6c56709.tar.bz2 upstream-25a5fab34cf89baeed19155baad430ccf6c56709.zip |
firewall: fix bad number error in fw_redirect() (#6704)
SVN-Revision: 19765
Diffstat (limited to 'package/firewall')
-rwxr-xr-x | package/firewall/files/uci_firewall.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/firewall/files/uci_firewall.sh b/package/firewall/files/uci_firewall.sh index 207dcd8df4..4921b91bae 100755 --- a/package/firewall/files/uci_firewall.sh +++ b/package/firewall/files/uci_firewall.sh @@ -355,18 +355,18 @@ fw_redirect() { src_port_first=${src_port%-*} src_port_last=${src_port#*-} - [ "$src_port_first" -ne "$src_port_last" ] && { \ + [ "$src_port_first" != "$src_port_last" ] && { \ src_port="$src_port_first:$src_port_last"; } src_dport_first=${src_dport%-*} src_dport_last=${src_dport#*-} - [ "$src_dport_first" -ne "$src_dport_last" ] && { \ + [ "$src_dport_first" != "$src_dport_last" ] && { \ src_dport="$src_dport_first:$src_dport_last"; } dest_port2=${dest_port:-$src_dport} dest_port_first=${dest_port2%-*} dest_port_last=${dest_port2#*-} - [ "$dest_port_first" -ne "$dest_port_last" ] && { \ + [ "$dest_port_first" != "$dest_port_last" ] && { \ dest_port2="$dest_port_first:$dest_port_last"; } add_rule() { |