From 463149cad27bcb0f37b8ac6a9650840778914d2c Mon Sep 17 00:00:00 2001 From: Sarvesh Bodakhe Date: Wed, 22 May 2024 15:42:33 +0530 Subject: [PATCH 1/2] fix(wifi): Fix bug in wrong profile checking of AP's RSNXE IE --- components/esp_wifi/lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_wifi/lib b/components/esp_wifi/lib index f3ea158d7c..e5111a1452 160000 --- a/components/esp_wifi/lib +++ b/components/esp_wifi/lib @@ -1 +1 @@ -Subproject commit f3ea158d7c62b1a4479f6c0174a02bc19fa59f90 +Subproject commit e5111a1452e6d5ae3474a7cbe1c151998537e10b From 9ebfd93c5d460ded5a157a0d4b2f23887b4e8dec Mon Sep 17 00:00:00 2001 From: Sarvesh Bodakhe Date: Mon, 30 Sep 2024 12:05:57 +0530 Subject: [PATCH 2/2] fix(wpa_supplicant): Fix debug print in wps_start_msg_timer() --- components/wpa_supplicant/esp_supplicant/src/esp_wps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wpa_supplicant/esp_supplicant/src/esp_wps.c b/components/wpa_supplicant/esp_supplicant/src/esp_wps.c index ae84728bf8..c67413b127 100644 --- a/components/wpa_supplicant/esp_supplicant/src/esp_wps.c +++ b/components/wpa_supplicant/esp_supplicant/src/esp_wps.c @@ -930,7 +930,7 @@ int wps_start_msg_timer(void) ret = 0; } else if (sm->wps->state == RECV_M2) { msg_timeout = 5; - wpa_printf(MSG_DEBUG, "start msg timer RECV_M2 %" PRId32 " ms", msg_timeout); + wpa_printf(MSG_DEBUG, "start msg timer RECV_M2 %" PRId32 " s", msg_timeout); eloop_cancel_timeout(wifi_station_wps_msg_timeout, NULL, NULL); eloop_register_timeout(msg_timeout, 0, wifi_station_wps_msg_timeout, NULL, NULL); ret = 0;