From 4e538b1e4d60de30b8643b8426d9c9e8ee9d49d7 Mon Sep 17 00:00:00 2001 From: Alfredo Cardigliano Date: Thu, 30 Jan 2020 15:20:52 +0100 Subject: Disabeld community id debug --- src/lib/ndpi_community_id.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/lib/ndpi_community_id.c b/src/lib/ndpi_community_id.c index 7b55fc009..30519b59e 100644 --- a/src/lib/ndpi_community_id.c +++ b/src/lib/ndpi_community_id.c @@ -173,7 +173,7 @@ static int ndpi_community_id_peer_v6_is_less_than(struct ndpi_in6_addr *ip1, str /* **************************************************** */ static void ndpi_community_id_sha1_hash(const uint8_t *message, size_t len, u_char *hash /* 20-bytes */) { - SHA1_CTX ctx = { 0 }; + SHA1_CTX ctx; SHA1Init(&ctx); SHA1Update(&ctx, message, len); SHA1Final(hash, &ctx); @@ -217,7 +217,7 @@ static int ndpi_community_id_finalize_and_compute_hash(u_int8_t *comm_buf, u_int if (community_id == NULL) return -1; -#if 1 /* Debug Info */ +#if 0 /* Debug Info */ printf("Hex output: "); for(int i = 0; i < off; i++) printf("%.2x ", comm_buf[i]); -- cgit v1.2.3