diff options
author | Roy Marples <roy@marples.name> | 2008-01-02 15:38:37 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-02 15:38:37 +0000 |
commit | fadee8e656807f466cdf39a9a9c0c113613bc36d (patch) | |
tree | 1179d0acb5e063621467654263e978274ec387dd /net.BSD | |
parent | e5933843e81b213786f78bb267f84fa78f663b61 (diff) |
Move _shell_var shell function to shell_var C applet
Diffstat (limited to 'net.BSD')
-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*) |