diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-09-14 15:18:48 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-09-14 15:18:48 +0000 |
commit | 8df03c85fe0b83e0a7508298591ae92b4c13c986 (patch) | |
tree | 49bfc7cd0033e4732bd262fbdf368bb0a6c90a57 /package/firewall/files | |
parent | 715285dd439e12b1a5d87c25a601457a282d2deb (diff) | |
download | upstream-8df03c85fe0b83e0a7508298591ae92b4c13c986.tar.gz upstream-8df03c85fe0b83e0a7508298591ae92b4c13c986.tar.bz2 upstream-8df03c85fe0b83e0a7508298591ae92b4c13c986.zip |
firewall: move the config_get out of the loop, no need to call it multiple times
SVN-Revision: 17581
Diffstat (limited to 'package/firewall/files')
-rw-r--r-- | package/firewall/files/20-firewall | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/firewall/files/20-firewall b/package/firewall/files/20-firewall index 32f8a853da..1cfc1b9c0e 100644 --- a/package/firewall/files/20-firewall +++ b/package/firewall/files/20-firewall @@ -27,9 +27,10 @@ config_foreach load_zones zone } [ ifdown = "$ACTION" ] && { + local up + config_get up "$INTERFACE" up + for z in $ZONE; do - local up - config_get up "$INTERFACE" up [ "$up" == "1" ] && delif "$INTERFACE" "$ifname" "$z" done } |