fix uci_set_state for empty values

SVN-Revision: 12345
This commit is contained in:
Felix Fietkau 2008-08-20 12:34:17 +00:00
parent fd26ece7f1
commit 1ffa647fe1

View File

@ -60,7 +60,7 @@ uci_set_state() {
local OPTION="$3"
local VALUE="$4"
[ -z "$VALUE" ] && return 0
[ "$#" = 4 ] || return 0
/sbin/uci -P /var/state set "$PACKAGE.$CONFIG${OPTION:+.$OPTION}=$VALUE"
}