Allow SME SA Query to be used by all drivers
authorChet Lanctot <clanctot@qca.qualcomm.com>
Mon, 11 Mar 2013 11:49:40 +0000 (13:49 +0200)
committerJouni Malinen <j@w1.fi>
Mon, 11 Mar 2013 11:49:40 +0000 (13:49 +0200)
The unprotected disconnection events were previously processed only for
drivers that used the wpa_supplicant SME implementation (separate
authentication and association commands). However, this can be useful
for drivers that use the connect API, so remove the limitation and allow
the same IEEE 802.11w SA Query mechanism to be used even without full
use of the wpa_supplicant SME.

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>

wpa_supplicant/sme.c

index 92762ef..4c78161 100644 (file)
@@ -1269,8 +1269,6 @@ void sme_event_unprot_disconnect(struct wpa_supplicant *wpa_s, const u8 *sa,
 {
        struct wpa_ssid *ssid;
 
-       if (!(wpa_s->drv_flags & WPA_DRIVER_FLAGS_SME))
-               return;
        if (wpa_s->wpa_state != WPA_COMPLETED)
                return;
        ssid = wpa_s->current_ssid;