diff options
author | Luca Deri <deri@ntop.org> | 2019-12-09 15:28:44 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-12-09 15:28:44 +0100 |
commit | 65d526d8f6ae75f8d1a3f5c8dd19bf40ec03f320 (patch) | |
tree | d6fa58447b77245af6f616f2026acceff6ecd08b /src/lib/protocols/telnet.c | |
parent | 56eeb965bf82fd9fbcd7a2b340cbf9473abaab20 (diff) |
Code cleanup
Diffstat (limited to 'src/lib/protocols/telnet.c')
-rw-r--r-- | src/lib/protocols/telnet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/protocols/telnet.c b/src/lib/protocols/telnet.c index 35693bf62..d5dda0d6b 100644 --- a/src/lib/protocols/telnet.c +++ b/src/lib/protocols/telnet.c @@ -186,12 +186,12 @@ void ndpi_search_telnet_tcp(struct ndpi_detection_module_struct *ndpi_struct, if(((flow->packet_counter < 12) && (flow->l4.tcp.telnet_stage > 0)) || (flow->packet_counter < 6)) { #ifdef TELNET_DEBUG - printf("==> [%s:%u] %s()\n", __FILE__, __LINE__, __FUNCTION__); + printf("==> [%s:%d] %s()\n", __FILE__, __LINE__, __FUNCTION__); #endif return; } else { #ifdef TELNET_DEBUG - printf("==> [%s:%u] %s()\n", __FILE__, __LINE__, __FUNCTION__); + printf("==> [%s:%d] %s()\n", __FILE__, __LINE__, __FUNCTION__); #endif NDPI_EXCLUDE_PROTO(ndpi_struct, flow); } |