From: Jo-Philipp Wich Date: Thu, 28 Nov 2013 11:26:34 +0000 (+0000) Subject: procd: fix processing of datatype specification with spaces X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Flynxis%2Fomap.git;a=commitdiff_plain;h=387761e2fc301ae98e30037d6c9065706ee6662d procd: fix processing of datatype specification with spaces SVN-Revision: 38935 --- diff --git a/package/system/procd/files/procd.sh b/package/system/procd/files/procd.sh index ddb6d95e68..2f97a5d7d2 100644 --- a/package/system/procd/files/procd.sh +++ b/package/system/procd/files/procd.sh @@ -222,10 +222,10 @@ uci_validate_section() local name="$3" local error shift; shift; shift - local result=`/sbin/validate_data "$package" "$type" "$name" $@ 2> /dev/null` + local result=`/sbin/validate_data "$package" "$type" "$name" "$@" 2> /dev/null` error=$? eval "$result" - [ "$error" = "0" ] || `/sbin/validate_data "$package" "$type" "$name" $@ 1> /dev/null` + [ "$error" = "0" ] || `/sbin/validate_data "$package" "$type" "$name" "$@" 1> /dev/null` return $error }