From 514853d2e36d3226ef70d7a0659624cfc4634f48 Mon Sep 17 00:00:00 2001 From: Kapil Gupta Date: Thu, 5 Jun 2025 15:24:03 +0530 Subject: [PATCH] fix(esp_wifi): Set default ap mgmt cipher --- components/wpa_supplicant/esp_supplicant/src/esp_hostap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c b/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c index 45b7e90768..9df1087a27 100644 --- a/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c +++ b/components/wpa_supplicant/esp_supplicant/src/esp_hostap.c @@ -158,7 +158,7 @@ void *hostap_init(void) auth_conf->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_256; break; default: - wpa_printf(MSG_DEBUG, "Invalid pairwise cipher (0x%x)", pairwise_cipher); + auth_conf->group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC; } } if (authmode == WIFI_AUTH_WPA2_WPA3_PSK) {