diff options
| author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-22 13:32:24 +0000 | 
|---|---|---|
| committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-22 13:32:24 +0000 | 
| commit | 9372f0a134b7396aa1442b2f78be6b512ab0a22a (patch) | |
| tree | 800676b19ab54aac243b767a03d1ab5716f8a95b | |
| parent | 5ce0b62462fb9d75a2c0083338d5f9c9e7633660 (diff) | |
fix various variable copying bugs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5613 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rwxr-xr-x | package/base-files/default/etc/functions.sh | 16 | 
1 files changed, 10 insertions, 6 deletions
diff --git a/package/base-files/default/etc/functions.sh b/package/base-files/default/etc/functions.sh index 7d34f57a4..0e7216d7b 100755 --- a/package/base-files/default/etc/functions.sh +++ b/package/base-files/default/etc/functions.sh @@ -19,7 +19,7 @@ append() {  	local value="$2"  	local sep="${3:- }" -	eval "$var=\"\${$var:+\${$var}${value:+$sep}}$value\"" +	eval "$var=\"\${$var:+\${$var}\${value:+\$sep}}\$value\""  }  reset_cb() { @@ -36,13 +36,14 @@ config () {  	name="${name:-cfg${_C}}"  	config_cb "$cfgtype" "$name"  	CONFIG_SECTION="$name" -	eval CONFIG_${CONFIG_SECTION}_TYPE="$cfgtype" +	eval CONFIG_${CONFIG_SECTION}_TYPE="\$cfgtype"  }  option () {  	local varname="$1"; shift +	local value="$*" -	eval CONFIG_${CONFIG_SECTION}_${varname}="$*" +	eval CONFIG_${CONFIG_SECTION}_${varname}="\$value"  	option_cb "$varname" "$*"  } @@ -97,7 +98,10 @@ config_get() {  }  config_set() { -	eval CONFIG_${1}_${2}="$3" +	local section="$1" +	local option="$2" +	local value="$3" +	eval CONFIG_${section}_${option}="\$value"  }  load_modules() { @@ -133,12 +137,12 @@ strtok() { # <string> { <variable> [<separator>] ... }  		val="${val#$tmp$2}" -		eval $1="$tmp"; count=$((count+1)) +		eval $1="\$tmp"; count=$((count+1))  		shift 2  	done  	if [ $# -gt 0 -a "$val" ]; then -		eval $1="$val"; count=$((count+1)) +		eval $1="\$val"; count=$((count+1))  	fi  	return $count  | 
