summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2016-01-19 21:15:33 +0000
committerRich Salz <rsalz@openssl.org>2016-01-22 12:00:46 -0500
commitb7557ccf361d61455535d1305f94d04da7235fdb (patch)
tree3fc97861dc8e9085034dd79788e676a0c831bb59 /ssl
parent74c2db31c06a6e7aec2677420db4d6d81fc0e54c (diff)
Fix build failure with CIPHER_DEBUG
Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_lib.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index fe9749ec83..7c99e8d7d4 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -2497,9 +2497,8 @@ void ssl_set_masks(SSL *s, const SSL_CIPHER *cipher)
mask_a = 0;
#ifdef CIPHER_DEBUG
- fprintf(stderr,
- "dht=%d re=%d rs=%d ds=%d dhr=%d dhd=%d\n",
- dh_tmp, rsa_enc, rsa_sign, dsa_sign, dh_rsa, dh_dsa);
+ fprintf(stderr, "dht=%d re=%d rs=%d ds=%d\n",
+ dh_tmp, rsa_enc, rsa_sign, dsa_sign);
#endif
#ifndef OPENSSL_NO_GOST