Skip to content

Commit

Permalink
cfg80211: fix typo of IWEVASSOCRESPIE
Browse files Browse the repository at this point in the history
It should be IWEVASSOCREQIE instead.

Signed-off-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
Zhu Yi authored and John W. Linville committed Jul 24, 2009
1 parent 1f00fca commit 3409ff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/wireless/sme.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ void __cfg80211_connect_result(struct net_device *dev, const u8 *bssid,
if (req_ie && status == WLAN_STATUS_SUCCESS) {
memset(&wrqu, 0, sizeof(wrqu));
wrqu.data.length = req_ie_len;
wireless_send_event(dev, IWEVASSOCRESPIE, &wrqu, req_ie);
wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, req_ie);
}

if (resp_ie && status == WLAN_STATUS_SUCCESS) {
Expand Down Expand Up @@ -474,7 +474,7 @@ void __cfg80211_roamed(struct wireless_dev *wdev, const u8 *bssid,
if (req_ie) {
memset(&wrqu, 0, sizeof(wrqu));
wrqu.data.length = req_ie_len;
wireless_send_event(wdev->netdev, IWEVASSOCRESPIE,
wireless_send_event(wdev->netdev, IWEVASSOCREQIE,
&wrqu, req_ie);
}

Expand Down

0 comments on commit 3409ff7

Please sign in to comment.