aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-02-05 00:52:48 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-02-05 00:52:48 +0000
commit8f88b18a3e33e889830b2fa0d301342d74db2e5e (patch)
treed9be8491239da04bab66469be383089ce776b521
parentc62f14c22ae59f8ecb2f5f767a9c2f16bcb59f4e (diff)
downloadmaster-187ad058-8f88b18a3e33e889830b2fa0d301342d74db2e5e.tar.gz
master-187ad058-8f88b18a3e33e889830b2fa0d301342d74db2e5e.tar.bz2
master-187ad058-8f88b18a3e33e889830b2fa0d301342d74db2e5e.zip
fix wrong path to uci (thx, phr3ak)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10387 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--package/uci/files/uci/lib/config/uci.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/uci/files/uci/lib/config/uci.sh b/package/uci/files/uci/lib/config/uci.sh
index 3a264a212b..bfec4febbe 100644
--- a/package/uci/files/uci/lib/config/uci.sh
+++ b/package/uci/files/uci/lib/config/uci.sh
@@ -41,7 +41,7 @@ uci_revert_state() {
local CONFIG="$2"
local OPTION="$3"
- /bin/uci -P /var/state revert "$PACKAGE${CONFIG:+.$CONFIG}${OPTION:+.$OPTION}"
+ /sbin/uci -P /var/state revert "$PACKAGE${CONFIG:+.$CONFIG}${OPTION:+.$OPTION}"
}
uci_set_state() {