summaryrefslogtreecommitdiff
path: root/net/iwconfig.sh.Linux.in
diff options
context:
space:
mode:
Diffstat (limited to 'net/iwconfig.sh.Linux.in')
-rw-r--r--net/iwconfig.sh.Linux.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/iwconfig.sh.Linux.in b/net/iwconfig.sh.Linux.in
index acc720e..252605c 100644
--- a/net/iwconfig.sh.Linux.in
+++ b/net/iwconfig.sh.Linux.in
@@ -250,12 +250,12 @@ iwconfig_associate()
SSIDVAR=$(shell_var "${SSID}")
key="$(iwconfig_get_wep_key "${mac}")"
if [ "${wep_required}" = "on" -a "${key}" = "off" ]; then
- ewarn "WEP key is not set for \"${SSID}\" - not connecting"
+ ewarn "WEP key is not set for \"${SSID}\""
return 1
fi
if [ "${wep_required}" = "off" -a "${key}" != "off" ]; then
key="off"
- ewarn "\"${SSID}\" is not WEP enabled - ignoring setting"
+ ewarn "\"${SSID}\" is not WEP enabled"
fi
if ! eval iwconfig "${IFACE}" key "${key}"; then