aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2024-05-21 13:08:07 +0200
committerGitHub <noreply@github.com>2024-05-21 13:08:07 +0200
commit3639d2045baa6cc048c82bfd6cc3f910a69b1457 (patch)
treef3b0c4704015272147ce3561e05acbd54036f8e9 /utils
parent83840f1bb9e8825bb8000025ef7331a1d2e68ac4 (diff)
Remove unused code. (#2450)
* some `#ifdef`ed code dates back to 2019, 2020 and 2021 * some function signatures were still present in `ndpi_main.h` which may cause linker errors for libnDPI dependee's * return an error while trying to serialize a double instead of `fprintf(stderr, ...)` Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils')
-rwxr-xr-xutils/check_symbols.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/check_symbols.sh b/utils/check_symbols.sh
index d24de16c1..5a2bf2991 100755
--- a/utils/check_symbols.sh
+++ b/utils/check_symbols.sh
@@ -29,7 +29,7 @@ for line in `nm -P -u "${NDPI_LIB}"`; do
'printf'|'fprintf') SKIP=1 ;;
esac
;;
- '[ahocorasick.o]'|'[ndpi_serializer.o]')
+ '[ahocorasick.o]')
case "${FOUND_SYMBOL}" in
'fprintf') SKIP=1 ;;
esac