nDPI: disable debug logs (#9204)

Enabling them in 3baf95b6ec wasn't a great
idea
This commit is contained in:
Ivan Nardi 2022-12-14 12:54:11 +01:00 committed by GitHub
parent 6638c4293b
commit 36a2e8a5e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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