diff options
author | Luca Deri <deri@ntop.org> | 2020-12-17 12:58:12 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-12-17 12:58:12 +0100 |
commit | df1b3367a9dffa937cd2cc0de460d4394079ec6e (patch) | |
tree | 1758f13c66fbdff11620e68752128ea0190912ae /src/lib/ndpi_utils.c | |
parent | 2768da06377ab64fccbb1bf97460e892e0548a60 (diff) |
Type change to avoid Windows compilation issues
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 53f8019dd..88f4356a8 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1748,7 +1748,7 @@ const char* ndpi_http_method2str(ndpi_http_method m) { /* ******************************************************************** */ -ndpi_http_method ndpi_http_str2method(const char* method, ssize_t method_len) { +ndpi_http_method ndpi_http_str2method(const char* method, u_int16_t method_len) { if(!method || method_len < 3) return(NDPI_HTTP_METHOD_UNKNOWN); |