fix uci_set_state for empty values
SVN-Revision: 12345
This commit is contained in:
parent
fd26ece7f1
commit
1ffa647fe1
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue