From: Jouni Malinen Date: Thu, 28 Jul 2022 14:08:11 +0000 (+0300) Subject: tests: Fix fuzzing/sae build X-Git-Tag: hostap_2_11~1781 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddcd15c2de167f7d205f8cdeb6f5a7a835fc2ca1;p=thirdparty%2Fhostap.git tests: Fix fuzzing/sae build sae.c depends on wpa_common.c now and as such, this test build needs to pull in whatever is needed there and that happens to include sha1-prf.c. Add that to the fuzzer to fix the build. Signed-off-by: Jouni Malinen --- diff --git a/tests/fuzzing/sae/Makefile b/tests/fuzzing/sae/Makefile index ee4b0c0b6..2cc74cdef 100644 --- a/tests/fuzzing/sae/Makefile +++ b/tests/fuzzing/sae/Makefile @@ -9,6 +9,7 @@ LIBS += $(SRC)/utils/libutils.a OBJS += $(SRC)/crypto/crypto_openssl.o OBJS += $(SRC)/crypto/dh_groups.o +OBJS += $(SRC)/crypto/sha1-prf.o OBJS += $(SRC)/crypto/sha256-prf.o OBJS += $(SRC)/crypto/sha256-kdf.o OBJS += $(SRC)/common/dragonfly.o