diff options
author | Sylvain Roger Rieunier <sylvain.roger.rieunier@gmail.com> | 2012-09-20 10:03:29 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-09-20 10:31:34 +0200 |
commit | 2514ec86531481713036081e93a353bbd02e542b (patch) | |
tree | 5e7e82426f24d0464ef4f49d9ea2a83ca248c57b /net | |
parent | 552bff0c2fec8953ba3793d75ee335032cc0b47c (diff) | |
download | linux-3.10-2514ec86531481713036081e93a353bbd02e542b.tar.gz linux-3.10-2514ec86531481713036081e93a353bbd02e542b.tar.bz2 linux-3.10-2514ec86531481713036081e93a353bbd02e542b.zip |
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: Sylvain Roger Rieunier <sylvain.roger.rieunier@gmail.com>
[reword commit message and make it fit 72 cols]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/mac80211/ibss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c index 7c082517f0c..5f3620f0bc0 100644 --- a/net/mac80211/ibss.c +++ b/net/mac80211/ibss.c @@ -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); } |