[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Fri Jan 22 17:01:03 UTC 2016


The branch master has been updated
       via  b7557ccf361d61455535d1305f94d04da7235fdb (commit)
      from  74c2db31c06a6e7aec2677420db4d6d81fc0e54c (commit)


- Log -----------------------------------------------------------------
commit b7557ccf361d61455535d1305f94d04da7235fdb
Author: Alessandro Ghedini <alessandro at ghedini.me>
Date:   Tue Jan 19 21:15:33 2016 +0000

    Fix build failure with CIPHER_DEBUG
    
    Signed-off-by: Rich Salz <rsalz at openssl.org>
    Reviewed-by: Kurt Roeckx <kurt at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 ssl/ssl_lib.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index fe9749e..7c99e8d 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


More information about the openssl-commits mailing list