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

SVN-Revision: 26740
master
Jo-Philipp Wich 14 years ago
parent 04d064a590
commit 2a386cee99
  1. 2
      package/firewall/Makefile
  2. 2
      package/firewall/files/lib/core_interface.sh

@ -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

@ -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"
}

Loading…
Cancel
Save