diff options
-rw-r--r-- | net/mac80211/ibss.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c index b253d0adf0ad..a497c03c03d7 100644 --- a/net/mac80211/ibss.c +++ b/net/mac80211/ibss.c | |||
@@ -298,6 +298,13 @@ static struct sta_info *ieee80211_ibss_finish_sta(struct sta_info *sta) | |||
298 | /* If it fails, maybe we raced another insertion? */ | 298 | /* If it fails, maybe we raced another insertion? */ |
299 | if (sta_info_insert_rcu(sta)) | 299 | if (sta_info_insert_rcu(sta)) |
300 | return sta_info_get(sdata, addr); | 300 | return sta_info_get(sdata, addr); |
301 | #ifdef CONFIG_MAC80211_IBSS_DEBUG | ||
302 | printk(KERN_DEBUG "TX Auth SA=%pM DA=%pM BSSID=%pM" | ||
303 | "(auth_transaction=1)\n", sdata->vif.addr, | ||
304 | sdata->u.ibss.bssid, addr); | ||
305 | #endif | ||
306 | ieee80211_send_auth(sdata, 1, WLAN_AUTH_OPEN, NULL, 0, | ||
307 | addr, sdata->u.ibss.bssid, NULL, 0, 0); | ||
301 | return sta; | 308 | return sta; |
302 | } | 309 | } |
303 | 310 | ||