diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | src/netcfg | 2 | ||||
-rw-r--r-- | src/wireless.subr | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -1,5 +1,5 @@ DESTDIR= -VERSION=2.0.6 +VERSION=2.1.0 install: @@ -39,7 +39,7 @@ pkg: tarball md5sum netcfg-$(VERSION)*gz > MD5SUMS.$(VERSION) upload: - scp netcfg-$(VERSION)*gz MD5SUMS.$(VERSION) archlinux.org:~/public_html/netcfg/ + scp netcfg-$(VERSION)*gz MD5SUMS.$(VERSION) archlinux.org:/home/ftp/other/netcfg/ clean: rm *gz @@ -12,7 +12,7 @@ err() { printhl "$*" } -NETCFG_VER=2.0.6 +NETCFG_VER=2.0.7 PROFILE_DIR="/etc/network.d/" SUBR_DIR="/usr/lib/network/" STATE_DIR="/var/run/network/" diff --git a/src/wireless.subr b/src/wireless.subr index b750c2a..a15e3a6 100644 --- a/src/wireless.subr +++ b/src/wireless.subr @@ -119,14 +119,14 @@ wireless_up() { if [[ -f /var/run/wpa_supplicant_$INTERFACE.pid ]]; then kill $(cat /var/run/wpa_supplicant_$INTERFACE.pid) fi - + if checkyesno $SCAN; then if ! find_essid $INTERFACE "$ESSID"; then err_append "Network unavailable" return 1 fi fi - + case $SECURITY in wep|none) # 'none' security uses iwconfig, like wep, so use same code, minus keysetting. |