hostap: Fix compilation error when enterprise support is enabled

The code was missing ")" when checking crypto support.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This commit is contained in:
Jukka Rissanen 2024-10-17 11:19:58 +03:00 committed by Henrik Brix Andersen
parent 6827ec0d93
commit 33bc6f05c8
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
!defined(CONFIG_EAP_PSK) && !defined(CONFIG_EAP_PAX) && \
!defined(CONFIG_EAP_SAKE) && !defined(CONFIG_EAP_GPSK) && \
!defined(CONFIG_EAP_PWD) && !defined(CONFIG_EAP_EKE) && \
!defined(CONFIG_EAP_IKEV2 && !defined(CONFIG_EAP_GTC)
!defined(CONFIG_EAP_IKEV2) && !defined(CONFIG_EAP_GTC)
#error "At least one of the following EAP methods need to be defined \
CONFIG_EAP_TLS \
CONFIG_EAP_TTLS \