Skip to content

Commit f3579ce

Browse files
kapilkedawatEspressif-liuuuu
authored andcommitted
fix(esp_wifi): Set default ap mgmt cipher
1 parent a714eb8 commit f3579ce

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)