firewall: prevent excessive uci state data aggregation (#9152)

SVN-Revision: 26740
This commit is contained in:
Jo-Philipp Wich 2011-04-20 11:49:09 +00:00
parent 04d064a590
commit 2a386cee99
2 changed files with 3 additions and 1 deletions

View file

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=firewall
PKG_VERSION:=2
PKG_RELEASE:=24
PKG_RELEASE:=25
include $(INCLUDE_DIR)/package.mk

View file

@ -8,6 +8,7 @@ fw__uci_state_add() {
val="${val// $item / }"
val="${val# }"
val="${val% }"
uci_revert_state firewall core $var
uci_set_state firewall core $var "${val:+$val }$item"
}
@ -19,6 +20,7 @@ fw__uci_state_del() {
val="${val// $item / }"
val="${val# }"
val="${val% }"
uci_revert_state firewall core $var
uci_set_state firewall core $var "$val"
}