summaryrefslogtreecommitdiffstats
path: root/net/mac80211
diff options
context:
space:
mode:
authorSimon Dinkin <simondinkin@gmail.com>2017-08-31 13:09:36 +0300
committerJohannes Berg <johannes.berg@intel.com>2017-09-05 09:04:20 +0200
commit7a7d3e4c031b969c3b570787fc9fdb605abda03e (patch)
treea190e7b098ff437dd42946b28ea4773bb317e928 /net/mac80211
parent6d9c153a0b84392406bc77600aa7d3ea365de041 (diff)
downloadop-kernel-dev-7a7d3e4c031b969c3b570787fc9fdb605abda03e.zip
op-kernel-dev-7a7d3e4c031b969c3b570787fc9fdb605abda03e.tar.gz
mac80211: fix incorrect assignment of reassoc value
this fix minor issue in the log message. in ieee80211_rx_mgmt_assoc_resp function, when assigning the reassoc value from the mgmt frame control: ieee80211_is_reassoc_resp function need to be used, instead of ieee80211_is_reassoc_req function. Signed-off-by: Simon Dinkin <simon.dinkin@tandemg.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r--net/mac80211/mlme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index b588e59..3b8e270 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -3155,7 +3155,7 @@ static void ieee80211_rx_mgmt_assoc_resp(struct ieee80211_sub_if_data *sdata,
if (len < 24 + 6)
return;
- reassoc = ieee80211_is_reassoc_req(mgmt->frame_control);
+ reassoc = ieee80211_is_reassoc_resp(mgmt->frame_control);
capab_info = le16_to_cpu(mgmt->u.assoc_resp.capab_info);
status_code = le16_to_cpu(mgmt->u.assoc_resp.status_code);
aid = le16_to_cpu(mgmt->u.assoc_resp.aid);
OpenPOWER on IntegriCloud