diff options
Diffstat (limited to 'src/lib/protocols')
-rw-r--r-- | src/lib/protocols/dhcp.c | 3 | ||||
-rw-r--r-- | src/lib/protocols/telnet.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/protocols/dhcp.c b/src/lib/protocols/dhcp.c index 6a350f856..2aff1ec18 100644 --- a/src/lib/protocols/dhcp.c +++ b/src/lib/protocols/dhcp.c @@ -107,7 +107,8 @@ void ndpi_search_dhcp_udp(struct ndpi_detection_module_struct *ndpi_struct, stru #if 1 offset += snprintf((char*)&flow->protos.dhcp.fingerprint[offset], sizeof(flow->protos.dhcp.fingerprint) - offset, - "%s%u", (idx > 0) ? "," : "", dhcp->options[i+2+idx] & 0xFF); + "%s%u", (idx > 0) ? "," : "", + (unsigned int)dhcp->options[i+2+idx] & 0xFF); #else offset += snprintf((char*)&flow->protos.dhcp.fingerprint[offset], sizeof(flow->protos.dhcp.fingerprint) - offset, 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); } |