diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-08-07 00:07:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-08-07 00:07:46 +0000 |
commit | 387b221aa1a160057c9394a69e72f0657fa18197 (patch) | |
tree | 625f6d6229fa26b2842e4ea8b9024d5ebf17e8d0 | |
parent | 4dbaccf0cd15a80b894baca4659ac38db4cc3ffe (diff) | |
download | upstream-387b221aa1a160057c9394a69e72f0657fa18197.tar.gz upstream-387b221aa1a160057c9394a69e72f0657fa18197.tar.bz2 upstream-387b221aa1a160057c9394a69e72f0657fa18197.zip |
base-files: port functions.sh to new config_get
Signed-off-by: Malte S. Stretz <mss@apache.org>
SVN-Revision: 17156
-rwxr-xr-x | package/base-files/files/etc/functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh index efa378f006..eb7faac1fe 100755 --- a/package/base-files/files/etc/functions.sh +++ b/package/base-files/files/etc/functions.sh @@ -91,8 +91,8 @@ list() { local value="$*" local len - config_get len "$CONFIG_SECTION" "${varname}_LENGTH" - len="$((${len:-0} + 1))" + config_get len "$CONFIG_SECTION" "${varname}_LENGTH" 0 + len=$(($len + 1)) config_set "$CONFIG_SECTION" "${varname}_ITEM$len" "$value" config_set "$CONFIG_SECTION" "${varname}_LENGTH" "$len" append "CONFIG_${CONFIG_SECTION}_${varname}" "$value" "$LIST_SEP" |