Skip to content

Commit

Permalink
Fix array usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mrud committed Dec 22, 2011
1 parent 71a3afd commit 64865aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sbin/netcardconfig
Expand Up @@ -499,11 +499,11 @@ if [ -z "$WLAN" ] ; then
WLAN_OLD=$(tail -n +3 /proc/net/wireless 2>/dev/null|awk -F: '{print $1}')
# /proc/net/wireless does not work e.g. with iwl3945 on kernel 2.6.33 anymore
WLAN_NEW=$(for i in /sys/class/net/* ; do ( [ -d $i/wireless ] || [ -d $i/phy80211 ] ) && basename $i ; done)
set -a WLAN_IWCONFIG=""
set -a WLAN_IWCONFIG
for DEV in $LAN ; do
iwconfig $DEV 2>/dev/null 1>&2 && WLAN_IWCONFIG+="$DEV"
iwconfig $DEV 2>/dev/null 1>&2 && WLAN_IWCONFIG+=($DEV)
done
WLAN=$(echo $WLAN_OLD $WLAN_NEW ${WLAN_IWCONFIG[*]} | sort -u)
WLAN=$(echo $WLAN_OLD $WLAN_NEW ${WLAN_IWCONFIG[@]} | tr ' ' '\n' | sort -u)
fi

unset LAN_DEVICES WLAN_DEVICES FIREWIRE_DEVICES NETDEVICES WLAN_IWCONFIG
Expand Down

0 comments on commit 64865aa

Please sign in to comment.