From: Jouni Malinen Date: Mon, 3 Feb 2020 15:45:06 +0000 (+0200) Subject: tests: Fix fuzzing/asn1 build X-Git-Tag: hostap_2_10~1877 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6fb526d457306257d9b6b42c2e0a7d93f6e9fac2;p=thirdparty%2Fhostap.git tests: Fix fuzzing/asn1 build asn1.c needs wpabuf.c to be included now. Signed-off-by: Jouni Malinen --- diff --git a/tests/fuzzing/asn1/Makefile b/tests/fuzzing/asn1/Makefile index 63be4bcd4..428625934 100644 --- a/tests/fuzzing/asn1/Makefile +++ b/tests/fuzzing/asn1/Makefile @@ -4,6 +4,7 @@ include ../rules.include OBJS += $(SRC)/utils/common.o OBJS += $(SRC)/utils/os_unix.o OBJS += $(SRC)/utils/wpa_debug.o +OBJS += $(SRC)/utils/wpabuf.o OBJS += $(SRC)/tls/asn1.o asn1: asn1.o $(OBJS) $(LIBS)