diff options
author | Alfredo Cardigliano <alfredo.cardigliano@gmail.com> | 2020-01-30 15:20:52 +0100 |
---|---|---|
committer | Alfredo Cardigliano <alfredo.cardigliano@gmail.com> | 2020-01-30 15:20:52 +0100 |
commit | 4e538b1e4d60de30b8643b8426d9c9e8ee9d49d7 (patch) | |
tree | a014011da1e3b3c8bcf1fa8aace241b04a728683 /src | |
parent | c84ed5a71257d1db28036c37e90f828ed86623a0 (diff) |
Disabeld community id debug
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/ndpi_community_id.c | 4 |
1 files changed, 2 insertions, 2 deletions
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]); |