From 8ea0eaa0d0c4a3be05f67ef7fa1d22c2579cf7d1 Mon Sep 17 00:00:00 2001 From: Toni Date: Mon, 12 Jun 2023 17:52:52 +0200 Subject: Fix missing u_char, u_short and u_int typedefs for some platforms e.g.: (#2009) In file included from ../include/ndpi_main.h:34, from ../include/ndpi_api.h:28, from protocols/activision.c:26: ../include/ndpi_typedefs.h:294:3: error: unknown type name 'u_char' 294 | u_char h_dest[6]; /* destination eth addr */ | ^~~~~~ Signed-off-by: Toni Uhlig --- src/lib/ndpi_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/lib/ndpi_main.c') diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index da863652c..9253d0f2a 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -8489,7 +8489,8 @@ char *ndpi_strnstr(const char *s, const char *find, size_t slen) { /* ****************************************************** */ /* - * Same as ndpi_strnstr but case-insensitive + * Same as ndpi_strnstr but case-insensitive. + * Please note that this function is *NOT* equivalent to strncasecmp(). */ const char * ndpi_strncasestr(const char *str1, const char *str2, size_t len) { size_t str1_len = strnlen(str1, len); -- cgit v1.2.3