diff options
Diffstat (limited to 'net.BSD/iwconfig.sh')
-rw-r--r-- | net.BSD/iwconfig.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net.BSD/iwconfig.sh b/net.BSD/iwconfig.sh index e784b37f..eb62a83c 100644 --- a/net.BSD/iwconfig.sh +++ b/net.BSD/iwconfig.sh @@ -119,7 +119,7 @@ iwconfig_setup_specific() { iwconfig_set_mode "${mode}" || return 1 - SSIDVAR=$(_shell_var "${SSID}") + SSIDVAR=$(shell_var "${SSID}") local key=$(iwconfig_get_wep_key) # Now set the key @@ -140,7 +140,7 @@ iwconfig_associate() { local mac="$1" channel="$2" caps="$3" local mode= w="(WEP Disabled)" key= - SSIDVAR=$(_shell_var "${SSID}") + SSIDVAR=$(shell_var "${SSID}") key=$(iwconfig_get_wep_key "${mac}") case "${caps}" in [EI]P*) |