aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorRami Rosen <ramirose@gmail.com>2008-12-16 22:38:29 +0200
committerJohn W. Linville <linville@tuxdriver.com>2008-12-19 15:23:30 -0500
commit135541215ca87ff00c269e65bcaef0bdcb99aab9 (patch)
treed5b8dde8553c5298810c36771dd559efd5f3ab67 /net
parentiwlwifi: remove a parameter (dest) from *_fill_beacon_frame() methods. (diff)
downloadlinux-dev-135541215ca87ff00c269e65bcaef0bdcb99aab9.tar.xz
linux-dev-135541215ca87ff00c269e65bcaef0bdcb99aab9.zip
mac80211: fix a typo in ieee80211_send_assoc() method.
This patch fixes a typo in ieee80211_send_assoc(), net/mac80211/mlme.c. The error is usage of a wrong member when building the ie80211 management frame (it should be assoc_req, and not reassoc_req). Signed-off-by: Rami Rosen <ramirose@gmail.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 a444b38f4901..1374b8c750ab 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -309,7 +309,7 @@ static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
mgmt->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
IEEE80211_STYPE_ASSOC_REQ);
mgmt->u.assoc_req.capab_info = cpu_to_le16(capab);
- mgmt->u.reassoc_req.listen_interval =
+ mgmt->u.assoc_req.listen_interval =
cpu_to_le16(local->hw.conf.listen_interval);
}