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
commit7ed5a844a3626e54fbaef6ec8e2c576cdbe4d1a7 (patch)
tree2c9095d2b0f4caafb91bf33916cef59d2b8341f2 /package/firewall/files/lib/core_rule.sh
parentff0ca066b820c970c900187d960f89c0506ea9d5 (diff)
downloadupstream-7ed5a844a3626e54fbaef6ec8e2c576cdbe4d1a7.tar.gz
upstream-7ed5a844a3626e54fbaef6ec8e2c576cdbe4d1a7.tar.bz2
upstream-7ed5a844a3626e54fbaef6ec8e2c576cdbe4d1a7.zip
[package] firewall: insert SNAT and DNAT rules according to the order of the configuration file (#8052)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23318 3c298f89-4303-0410-b956-a3cf2f4a3e73
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