mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
fix madwifi bssid allocation
SVN-Revision: 10087
This commit is contained in:
parent
3b2e07b84f
commit
457d9d3d1b
13
package/madwifi/patches/311-bssid_alloc.patch
Normal file
13
package/madwifi/patches/311-bssid_alloc.patch
Normal file
@ -0,0 +1,13 @@
|
||||
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);
|
Loading…
Reference in New Issue
Block a user