[cosmetic] accommodate for 5 digits svn revisions :)
[openwrt.git] / package / uci / files / lib / config / uci.sh
index c226f4f..38f3097 100644 (file)
@@ -17,6 +17,7 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
+CONFIG_APPEND=
 uci_load() {
        local PACKAGE="$1"
        local DATA
@@ -59,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"
 }
 
This page took 0.026038 seconds and 4 git commands to generate.