diff options
-rw-r--r-- | src/lib/protocols/tls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/protocols/tls.c b/src/lib/protocols/tls.c index c78f01876..d3873ab98 100644 --- a/src/lib/protocols/tls.c +++ b/src/lib/protocols/tls.c @@ -364,7 +364,8 @@ void processCertificateElements(struct ndpi_detection_module_struct *ndpi_struct struct ndpi_flow_struct *flow, u_int16_t p_offset, u_int16_t certificate_len) { struct ndpi_packet_struct *packet = &ndpi_struct->packet; - u_int16_t num_found = 0, i; + u_int16_t num_found = 0; + int32_t i; char buffer[64] = { '\0' }, rdnSeqBuf[2048]; u_int rdn_len = 0; |