Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2514ec86 authored by Sylvain Roger Rieunier's avatar Sylvain Roger Rieunier Committed by Johannes Berg
Browse files

mac80211: fix IBSS auth TX debug message



In the IBSS auth TX debug message the BSSID and DA
address are reversed, fix that.

Signed-off-by: default avatarSylvain Roger Rieunier <sylvain.roger.rieunier@gmail.com>
[reword commit message and make it fit 72 cols]
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 552bff0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -278,7 +278,7 @@ static struct sta_info *ieee80211_ibss_finish_sta(struct sta_info *sta,
	if (auth && !sdata->u.ibss.auth_frame_registrations) {
		ibss_dbg(sdata,
			 "TX Auth SA=%pM DA=%pM BSSID=%pM (auth_transaction=1)\n",
			 sdata->vif.addr, sdata->u.ibss.bssid, addr);
			 sdata->vif.addr, addr, sdata->u.ibss.bssid);
		ieee80211_send_auth(sdata, 1, WLAN_AUTH_OPEN, NULL, 0,
				    addr, sdata->u.ibss.bssid, NULL, 0, 0);
	}