diff options
author | Roy Marples <roy@marples.name> | 2007-12-19 14:28:38 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-12-19 14:28:38 +0000 |
commit | ed620aec61752b35914aec8841a2576ceb69a277 (patch) | |
tree | 1f41d6f09b76c8cbe17f924d49bd17bc44c3659b /net.BSD/iwconfig.sh | |
parent | bc9cc3dfb5c27d30964dc497d7559c134f3893ef (diff) |
get_options -> service_get_value and save_options -> service_set_value
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 d33af4c9..e784b37f 100644 --- a/net.BSD/iwconfig.sh +++ b/net.BSD/iwconfig.sh @@ -555,7 +555,7 @@ iwconfig_pre_start() { # the background yesno ${IN_BACKGROUND} && return 0 - save_options "SSID" "" + service_set_value "SSID" "" _exists || return 0 if ! _is_wireless ; then @@ -572,7 +572,7 @@ iwconfig_pre_start() { einfo "Configuring wireless network for ${IFACE}" if iwconfig_configure ; then - save_options "SSID" "${SSID}" + service_set_value "SSID" "${SSID}" return 0 fi |