diff options
author | lns <matzeton@googlemail.com> | 2023-05-30 12:40:44 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2023-05-31 12:53:49 +0200 |
commit | 2b1db0a556c31f15e2fcff0c127781fb91c0b402 (patch) | |
tree | c833e11886f5ef03b7564e31108f5d1abd000f1e /nDPId.c | |
parent | d8c20d37e53a901d5c44ec2346f7ca21439a60cb (diff) |
Required libnDPI version increases (>=4.8.0) due to an API change.
* fix CI issues
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'nDPId.c')
-rw-r--r-- | nDPId.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -49,8 +49,8 @@ #define DLT_DSA_TAG_EDSA 285 #endif -#if ((NDPI_MAJOR == 4 && NDPI_MINOR < 4) || NDPI_MAJOR < 4) && NDPI_API_VERSION < 6336 -#error "nDPI >= 4.4.0 or API version >= 6336 required" +#if ((NDPI_MAJOR == 4 && NDPI_MINOR < 8) || NDPI_MAJOR < 4) && NDPI_API_VERSION < 7001 +#error "nDPI >= 4.8.0 or API version >= 7001 required" #endif #if nDPId_MAX_READER_THREADS <= 0 @@ -1210,7 +1210,7 @@ static void ndpi_debug_printf(unsigned int proto, ...) { va_list vl; - int written, is_log_err; + int written, is_log_err = 0; char buf[128]; struct nDPId_workflow * const workflow = (struct nDPId_workflow *)ndpi_get_user_data(ndpi_struct); |