1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-22 03:27:12 +03:00
openwrt-xburst/package/madwifi/patches/311-bssid_alloc.patch
nbd 0a6107c8d9 fix madwifi bssid allocation
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10087 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-01-02 19:47:05 +00:00

14 lines
603 B
Diff

Index: madwifi-dfs-r3053/ath/if_ath.c
===================================================================
--- madwifi-dfs-r3053.orig/ath/if_ath.c 2007-12-20 23:43:22.845925726 +0100
+++ madwifi-dfs-r3053/ath/if_ath.c 2007-12-20 23:43:30.570365916 +0100
@@ -1320,7 +1320,7 @@
TAILQ_FOREACH(v, &ic->ic_vaps, iv_next)
id_mask |= (1 << ATH_GET_VAP_ID(v->iv_myaddr, ic->ic_myaddr));
- for (id = 1; id < ATH_BCBUF; id++) {
+ for (id = 0; id < ATH_BCBUF; id++) {
/* get the first available slot */
if ((id_mask & (1 << id)) == 0) {
ATH_SET_VAP_BSSID(vap->iv_myaddr, ic->ic_myaddr, id);