1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 02:52:23 +03:00

broadcom-wl: only use mssid if necessary (fixes spurious error messages on older hw)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12769 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2008-09-28 18:30:23 +00:00
parent 23ab7d24d7
commit baf609d512

View File

@ -5,10 +5,12 @@ scan_broadcom() {
local wds
local adhoc sta apmode mon
local adhoc_if sta_if ap_if mon_if
local _c=0
config_get vifs "$device" vifs
for vif in $vifs; do
config_get mode "$vif" mode
_c=$(($_c + 1))
case "$mode" in
adhoc)
adhoc=1
@ -53,7 +55,11 @@ scan_broadcom() {
ap=1
infra=1
mssid=1
if [ "$_c" -gt 1 ]; then
mssid=1
else
mssid=
fi
apsta=0
radio=1
monitor=0