From 3ee9ade6cf7220465b923be17e938a7d496b0042 Mon Sep 17 00:00:00 2001 From: Chet Lanctot Date: Mon, 11 Mar 2013 13:49:40 +0200 Subject: [PATCH] Allow SME SA Query to be used by all drivers 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 --- wpa_supplicant/sme.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/wpa_supplicant/sme.c b/wpa_supplicant/sme.c index 92762ef43..4c7816114 100644 --- a/wpa_supplicant/sme.c +++ b/wpa_supplicant/sme.c @@ -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;