From 9f3e60e41f953c417212980e75e4c1a603687a50 Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Sun, 25 May 2014 16:23:11 +0000 Subject: Remove TLS_DEBUG, SSL_DEBUG, CIPHER_DEBUG and OPENSSL_RI_DEBUG. Much of this is sporadic, hacked up and can easily be put back in an improved form should we ever need it. ok miod@ --- lib/libssl/s3_clnt.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'lib/libssl/s3_clnt.c') diff --git a/lib/libssl/s3_clnt.c b/lib/libssl/s3_clnt.c index 16d5dacfc4a..863a05adb32 100644 --- a/lib/libssl/s3_clnt.c +++ b/lib/libssl/s3_clnt.c @@ -1638,10 +1638,6 @@ ssl3_get_key_exchange(SSL *s) al = SSL_AD_DECODE_ERROR; goto f_err; } -#ifdef SSL_DEBUG - fprintf(stderr, "USING TLSv1.2 HASH %s\n", - EVP_MD_name(md)); -#endif p += 2; n -= 2; } else @@ -2674,10 +2670,6 @@ ssl3_send_client_verify(SSL *s) goto err; } p += 2; -#ifdef SSL_DEBUG - fprintf(stderr, "Using TLS 1.2 with client alg %s\n", - EVP_MD_name(md)); -#endif if (!EVP_SignInit_ex(&mctx, md, NULL) || !EVP_SignUpdate(&mctx, hdata, hdatalen) || !EVP_SignFinal(&mctx, p + 2, &u, pkey)) { -- cgit v1.2.3