cfg80211: remove dead variable

commit 211a4d12abf86fe0df4cd68fc6327cbb58f56f81
  Author: Johannes Berg <johannes@sipsolutions.net>
  Date:   Tue Oct 20 15:08:53 2009 +0900

      cfg80211: sme: deauthenticate on assoc failure

accidentally introduced a dead variable, I had
changed the code to not need it while creating
the patch and it looks like I forgot to remove
the variable (and nobody else noticed either).

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Johannes Berg 2009-10-31 16:15:39 +01:00 коммит произвёл John W. Linville
Родитель 5b9482dda6
Коммит 7fdad987d6
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -62,7 +62,6 @@ void cfg80211_send_rx_assoc(struct net_device *dev, const u8 *buf, size_t len)
u8 *ie = mgmt->u.assoc_resp.variable; u8 *ie = mgmt->u.assoc_resp.variable;
int i, ieoffs = offsetof(struct ieee80211_mgmt, u.assoc_resp.variable); int i, ieoffs = offsetof(struct ieee80211_mgmt, u.assoc_resp.variable);
struct cfg80211_internal_bss *bss = NULL; struct cfg80211_internal_bss *bss = NULL;
bool need_connect_result = true;
wdev_lock(wdev); wdev_lock(wdev);
@ -97,7 +96,6 @@ void cfg80211_send_rx_assoc(struct net_device *dev, const u8 *buf, size_t len)
WARN_ON(!bss); WARN_ON(!bss);
} else if (wdev->conn) { } else if (wdev->conn) {
cfg80211_sme_failed_assoc(wdev); cfg80211_sme_failed_assoc(wdev);
need_connect_result = false;
/* /*
* do not call connect_result() now because the * do not call connect_result() now because the
* sme will schedule work that does it later. * sme will schedule work that does it later.