From 89bcd5636e61810960d84efcfac87f1aea50d38c Mon Sep 17 00:00:00 2001 From: Aditi Date: Fri, 8 Nov 2024 15:17:16 +0530 Subject: [PATCH] fix(wpa_supplicant): Fix for sending alternate ft-auth in roaming --- components/wpa_supplicant/esp_supplicant/src/esp_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wpa_supplicant/esp_supplicant/src/esp_common.c b/components/wpa_supplicant/esp_supplicant/src/esp_common.c index aae6a955ba..a38b9775b0 100644 --- a/components/wpa_supplicant/esp_supplicant/src/esp_common.c +++ b/components/wpa_supplicant/esp_supplicant/src/esp_common.c @@ -291,10 +291,10 @@ static int ieee80211_handle_rx_frm(u8 type, u8 *frame, size_t len, u8 *sender, #endif /* CONFIG_IEEE80211R */ case WLAN_FC_STYPE_ASSOC_RESP: case WLAN_FC_STYPE_REASSOC_RESP: - wpa_sm_notify_assoc(&gWpaSm, sender); #ifdef CONFIG_IEEE80211R ret = handle_assoc_frame(frame, len, sender, rssi, channel); #endif /* CONFIG_IEEE80211R */ + wpa_sm_notify_assoc(&gWpaSm, sender); break; #if defined(CONFIG_IEEE80211KV) case WLAN_FC_STYPE_ACTION: