aboutsummaryrefslogtreecommitdiffstats
path: root/package/firewall/files/lib/core_rule.sh
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-10-08 12:11:55 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-10-08 12:11:55 +0000
commita43f5b5038a93c52b5d45bcbcff78adb6410c43c (patch)
tree475cdbadf7ca6b211e2c5a36adfbacce400f0b73 /package/firewall/files/lib/core_rule.sh
parent458e8736fc0646f892b77f50e80a24579058bb71 (diff)
downloadupstream-a43f5b5038a93c52b5d45bcbcff78adb6410c43c.tar.gz
upstream-a43f5b5038a93c52b5d45bcbcff78adb6410c43c.tar.bz2
upstream-a43f5b5038a93c52b5d45bcbcff78adb6410c43c.zip
firewall: insert SNAT and DNAT rules according to the order of the configuration file (#8052)
SVN-Revision: 23318
Diffstat (limited to 'package/firewall/files/lib/core_rule.sh')
-rw-r--r--package/firewall/files/lib/core_rule.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/firewall/files/lib/core_rule.sh b/package/firewall/files/lib/core_rule.sh
index a0de3ba8bb..9443eef8cf 100644
--- a/package/firewall/files/lib/core_rule.sh
+++ b/package/firewall/files/lib/core_rule.sh
@@ -53,7 +53,7 @@ fw_load_rule() {
fw_get_negation dest_spec '-d' "${rule_dest_ip:+$rule_dest_ip/$rule_dest_ip_prefixlen}"
local rule_pos
- eval 'rule_pos=$((++FW__RULE_COUNT_'$mode'_'$chain'))'
+ eval 'rule_pos=$((++FW__RULE_COUNT_'${mode#G}'_'$chain'))'
[ "$rule_proto" == "tcpudp" ] && rule_proto="tcp udp"
for rule_proto in $rule_proto; do