diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-15 16:24:13 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-15 16:24:13 +0000 |
commit | a7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1 (patch) | |
tree | 2a0ddfe1264e8c3ef19480a6d0ebf43ab6e132a0 | |
parent | 02c7575a8fa155d844d4785b3037f8128f1db5df (diff) | |
download | upstream-a7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1.tar.gz upstream-a7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1.tar.bz2 upstream-a7efa9b2aa72b5d62a47dd861bbc0e4a3b0715b1.zip |
fix error message
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5119 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/base-files/default/sbin/wifi | 2 |
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 |