From: Jouni Malinen Date: Sat, 4 Nov 2023 13:05:15 +0000 (+0200) Subject: EHT: Include crypto.h to avoid implicit function definition X-Git-Tag: hostap_2_11~859 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=568a5a81592932c588c1ca6a283100949f7c7b8c;p=thirdparty%2Fhostap.git EHT: Include crypto.h to avoid implicit function definition crypto_ec_*() were not defined in some build configuration cases. Signed-off-by: Jouni Malinen --- diff --git a/src/ap/ieee802_11_eht.c b/src/ap/ieee802_11_eht.c index ff4a8dff6..1d1751837 100644 --- a/src/ap/ieee802_11_eht.c +++ b/src/ap/ieee802_11_eht.c @@ -8,6 +8,7 @@ #include "utils/includes.h" #include "utils/common.h" +#include "crypto/crypto.h" #include "crypto/dh_groups.h" #include "hostapd.h" #include "sta_info.h"