From: Felix Fietkau Date: Sun, 15 Oct 2006 16:24:13 +0000 (+0000) Subject: fix error message X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=a4f698d8d6e821994a244cf17b67ea6187c942e4;ds=inline fix error message SVN-Revision: 5119 --- 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