summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_lib.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2007-02-19 16:59:13 +0000
committerBodo Möller <bodo@openssl.org>2007-02-19 16:59:13 +0000
commit2afe316721982828eba29744f59244d443fc27a3 (patch)
tree3e2113edfaa58b172c6a4f47d9cda4266fc4cb43 /ssl/ssl_lib.c
parent7e69565fe680b8bf244a076f0b069f8937b6c7b8 (diff)
fix warnings for CIPHER_DEBUG builds
Diffstat (limited to 'ssl/ssl_lib.c')
-rw-r--r--ssl/ssl_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 1c28daa2b8..6e5d1b7f46 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1712,7 +1712,7 @@ void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
#ifdef CIPHER_DEBUG
printf("rt=%d rte=%d dht=%d ecdht=%d re=%d ree=%d rs=%d ds=%d dhr=%d dhd=%d\n",
- rsa_tmp,rsa_tmp_export,dh_tmp,ecdh_tmp,
+ rsa_tmp,rsa_tmp_export,dh_tmp,have_ecdh_tmp,
rsa_enc,rsa_enc_export,rsa_sign,dsa_sign,dh_rsa,dh_dsa);
#endif