fix(esp_wifi): Set default nvs value for sae identifier to NULL

Resolves regression introduced in 6f7cf98ffe
which may impact WPA3 station connection in certain conditions
This commit is contained in:
Shreyas Sheth
2025-09-23 15:08:04 +05:30
committed by Kapil Gupta
parent 28219461ee
commit 0b0b38ea4c
2 changed files with 2 additions and 2 deletions

View File

@@ -581,7 +581,7 @@ typedef struct {
uint32_t vht_mu_beamformee_disabled: 1; /**< Whether to disable support for operation as an VHT MU beamformee. */ uint32_t vht_mu_beamformee_disabled: 1; /**< Whether to disable support for operation as an VHT MU beamformee. */
uint32_t vht_mcs8_enabled: 1; /**< Whether to support VHT-MCS8. The default value is 0. */ uint32_t vht_mcs8_enabled: 1; /**< Whether to support VHT-MCS8. The default value is 0. */
uint32_t reserved2: 19; /**< Reserved for future feature set */ uint32_t reserved2: 19; /**< Reserved for future feature set */
uint8_t sae_h2e_identifier[SAE_H2E_IDENTIFIER_LEN];/**< Password identifier for H2E. this needs to be null terminated string */ uint8_t sae_h2e_identifier[SAE_H2E_IDENTIFIER_LEN]; /**< Password identifier for H2E. Strings null-terminated (length < SAE_H2E_IDENTIFIER_LEN) or non-null terminated (length = SAE_H2E_IDENTIFIER_LEN) are accepted. Non-null terminated string with 0xFF for full length of SAE_H2E_IDENTIFIER_LEN is not considered a valid identifier */
} wifi_sta_config_t; } wifi_sta_config_t;
/** /**