summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-08-07 00:07:46 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-08-07 00:07:46 +0000
commit387b221aa1a160057c9394a69e72f0657fa18197 (patch)
tree625f6d6229fa26b2842e4ea8b9024d5ebf17e8d0 /package
parent4dbaccf0cd15a80b894baca4659ac38db4cc3ffe (diff)
downloadmaster-31e0f0ae-387b221aa1a160057c9394a69e72f0657fa18197.tar.gz
master-31e0f0ae-387b221aa1a160057c9394a69e72f0657fa18197.tar.bz2
master-31e0f0ae-387b221aa1a160057c9394a69e72f0657fa18197.zip
base-files: port functions.sh to new config_get
Signed-off-by: Malte S. Stretz <mss@apache.org> SVN-Revision: 17156
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/files/etc/functions.sh4
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"