From ddcd15c2de167f7d205f8cdeb6f5a7a835fc2ca1 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 28 Jul 2022 17:08:11 +0300 Subject: [PATCH] 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 --- tests/fuzzing/sae/Makefile | 1 + 1 file changed, 1 insertion(+) 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