From 31b87d5f8f0bf4b527f35f94f029abb63d85735f Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 22 Oct 2018 19:25:04 +0200 Subject: [PATCH] tls: remove debug printfs --- src/app-layer-ssl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app-layer-ssl.c b/src/app-layer-ssl.c index d0c99b69b9..a3f3c5061f 100644 --- a/src/app-layer-ssl.c +++ b/src/app-layer-ssl.c @@ -1745,7 +1745,6 @@ static int SSLv3ParseRecord(uint8_t direction, SSLState *ssl_state, case 1: if (!skip_version) { ssl_state->curr_connp->version = *(input++) << 8; - printf("%d\n", ssl_state->curr_connp->version); } else { input++; } @@ -1756,7 +1755,6 @@ static int SSLv3ParseRecord(uint8_t direction, SSLState *ssl_state, case 2: if (!skip_version) { ssl_state->curr_connp->version |= *(input++); - printf("%d\n", ssl_state->curr_connp->version); } else { input++; }