summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorJouni Malinen <jouni.malinen@atheros.com>2009-03-19 11:39:19 (GMT)
committerJohn W. Linville <linville@tuxdriver.com>2009-03-28 00:13:01 (GMT)
commit4b4698c443c9db62b220c41a1793872d6ebe82e1 (patch)
treecefacc9eccc3c9d58c20936bf8464f267f4f6fbe /net
parent0934af2340caf3c9f247ae650bf0c6faa4203dba (diff)
downloadlinux-4b4698c443c9db62b220c41a1793872d6ebe82e1.tar.xz
mac80211: Fix a typo in assoc vs. reassoc check
Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-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 a558796..4c753bb 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -103,7 +103,7 @@ static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
u32 rates = 0;
size_t e_ies_len;
- if (ifmgd->flags & IEEE80211_IBSS_PREV_BSSID_SET) {
+ if (ifmgd->flags & IEEE80211_STA_PREV_BSSID_SET) {
e_ies = sdata->u.mgd.ie_reassocreq;
e_ies_len = sdata->u.mgd.ie_reassocreq_len;
} else {