From 36a2e8a5e22b56524ee04bcad4412719971ce392 Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Wed, 14 Dec 2022 12:54:11 +0100 Subject: [PATCH] nDPI: disable debug logs (#9204) Enabling them in 3baf95b6ec9425509b1ea370621c82ad180a2f7a wasn't a great idea --- projects/ndpi/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/ndpi/build.sh b/projects/ndpi/build.sh index 7ab46726b..90f29ec2b 100755 --- a/projects/ndpi/build.sh +++ b/projects/ndpi/build.sh @@ -50,7 +50,7 @@ fi cd ndpi # Set LDFLAGS variable and `--with-only-libndpi` option as workaround for the # "missing dependencies errors" in the introspector build. See #8939 -LDFLAGS="-lpcap" ./autogen.sh --enable-debug-messages --enable-fuzztargets --with-only-libndpi +LDFLAGS="-lpcap" ./autogen.sh --enable-fuzztargets --with-only-libndpi make -j$(nproc) # Copy fuzzers ls fuzz/fuzz* | grep -v "\." | while read i; do cp $i $OUT/; done