diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-06-26 22:44:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-06-26 22:44:53 +0000 |
commit | 2a5c73861989e8ad3e7498a606bfd7ad9a41559d (patch) | |
tree | 632af17d361a23d1c188e5900db26858cd9d486d /package/base-files | |
parent | a8c253977abbafa2f30a1c0c6d060c2f25b5edfe (diff) | |
download | upstream-2a5c73861989e8ad3e7498a606bfd7ad9a41559d.tar.gz upstream-2a5c73861989e8ad3e7498a606bfd7ad9a41559d.tar.bz2 upstream-2a5c73861989e8ad3e7498a606bfd7ad9a41559d.zip |
don't rely on temporary variables in config() as they may get overwritten by config_cb()
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4088 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/default/etc/functions.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/package/base-files/default/etc/functions.sh b/package/base-files/default/etc/functions.sh index e87515d6ea..3010196171 100755 --- a/package/base-files/default/etc/functions.sh +++ b/package/base-files/default/etc/functions.sh @@ -36,13 +36,11 @@ reset_cb() { reset_cb config () { - local type="$1" - local name="$2" _C=$(($_C + 1)) name="${name:-cfg${_C}}" - config_cb "$type" "$name" - export CONFIG_SECTION="$name" - export CONFIG_${CONFIG_SECTION}_TYPE="$type" + config_cb "$1" "$2" + export CONFIG_SECTION="$2" + export CONFIG_${CONFIG_SECTION}_TYPE="$1" } option () { |