wifi_prov: Fix build issue when building only for `sec1` or `sec2`

pull/12369/head
Laukik Hase 2023-05-23 11:45:23 +05:30
rodzic fcb98e5851
commit 9d905d18bb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D6F3208C06086AC8
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -201,7 +201,7 @@ typedef enum wifi_prov_security {
* + proof of possession (pop) based authentication
* + AES-CTR encryption
*/
WIFI_PROV_SECURITY_1,
WIFI_PROV_SECURITY_1 = 1,
#endif
#ifdef CONFIG_ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2
/**
@ -209,7 +209,7 @@ typedef enum wifi_prov_security {
* SRP6a based authentication and key exchange
* + AES-GCM encryption/decryption
*/
WIFI_PROV_SECURITY_2
WIFI_PROV_SECURITY_2 = 2
#endif
} wifi_prov_security_t;