From e19fded66eca272b095704d3dded23a4e4819ff8 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 1 Apr 2012 21:27:12 +0300 Subject: [PATCH] Fix Probe Request processing in wpa_supplicant AP mode Commit 2d43d37ff2c3115da812bec8ea4c72048e1194d8 broke EVENT_RX_MGMT processing in wpa_supplicant AP mode. ap_mgmt_rx() needs to be called for Probe Request frames even if they get notified through the new D-Bus signal mechanism. Signed-hostap: Jouni Malinen --- wpa_supplicant/events.c | 1 - 1 file changed, 1 deletion(-) diff --git a/wpa_supplicant/events.c b/wpa_supplicant/events.c index cd45cd19e..79a4a55cf 100644 --- a/wpa_supplicant/events.c +++ b/wpa_supplicant/events.c @@ -2349,7 +2349,6 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event, wpas_notify_preq(wpa_s, mgmt->sa, mgmt->da, mgmt->bssid, ie, ie_len, data->rx_mgmt.ssi_signal); - break; } ap_mgmt_rx(wpa_s, &data->rx_mgmt);