Skip to content
Snippets Groups Projects
Commit 0a6107c8 authored by nbd's avatar nbd
Browse files

fix madwifi bssid allocation

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10087 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 82d2ff5e
No related branches found
No related tags found
No related merge requests found
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);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment