Skip to content

Commit bc93cee

Browse files
committed
Merge branch 'bugfix/set_default_ap_mgmt_cipher' into 'master'
fix(esp_wifi): Set default ap mgmt cipher See merge request espressif/esp-idf!39691
2 parents 5799f55 + 514853d commit bc93cee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/wpa_supplicant/esp_supplicant/src/esp_hostap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void *hostap_init(void)
158158
auth_conf->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_256;
159159
break;
160160
default:
161-
wpa_printf(MSG_DEBUG, "Invalid pairwise cipher (0x%x)", pairwise_cipher);
161+
auth_conf->group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC;
162162
}
163163
}
164164
if (authmode == WIFI_AUTH_WPA2_WPA3_PSK) {

0 commit comments

Comments
 (0)