From 6fb526d457306257d9b6b42c2e0a7d93f6e9fac2 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Mon, 3 Feb 2020 17:45:06 +0200 Subject: [PATCH] tests: Fix fuzzing/asn1 build asn1.c needs wpabuf.c to be included now. Signed-off-by: Jouni Malinen --- tests/fuzzing/asn1/Makefile | 1 + 1 file changed, 1 insertion(+) 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)