aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-10-15 16:24:13 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-10-15 16:24:13 +0000
commita7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1 (patch)
tree2a0ddfe1264e8c3ef19480a6d0ebf43ab6e132a0 /package
parent02c7575a8fa155d844d4785b3037f8128f1db5df (diff)
downloadmaster-187ad058-a7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1.tar.gz
master-187ad058-a7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1.tar.bz2
master-187ad058-a7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1.zip
fix error message
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5119 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/default/sbin/wifi2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/default/sbin/wifi b/package/base-files/default/sbin/wifi
index 759cfb0a84..67ccb8a0b0 100755
--- a/package/base-files/default/sbin/wifi
+++ b/package/base-files/default/sbin/wifi
@@ -20,7 +20,7 @@ wifi_down() {
config_get iftype "$device" type
if eval "type disable_$iftype" 2>/dev/null >/dev/null; then
eval "scan_$iftype '$device'"
- eval "disable_$iftype '$device'" || echo "$device($iftype): Setup failed"
+ eval "disable_$iftype '$device'" || echo "$device($iftype): Disable failed"
else
echo "$device($iftype): Interface type not supported"
fi