summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2019-04-03 20:13:22 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2019-04-03 20:13:22 +0100
commit10ed27e00c45ff6bf5494f74758541d61dd15880 (patch)
tree105b98b34a732c4f3ec885a5b05cc3a25fd480bb
parentc19ab167ac8809d33720497a973d0c6c7ea3640d (diff)
downloadexim4-10ed27e00c45ff6bf5494f74758541d61dd15880.tar.gz
OpenSSL: tidy coding of session keys debug
-rw-r--r--src/src/tls-openssl.c21
1 files changed, 4 insertions, 17 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c
index 5a5e1464b..8671e1129 100644
--- a/src/src/tls-openssl.c
+++ b/src/src/tls-openssl.c
@@ -2345,12 +2345,8 @@ DEBUG(D_tls)
#ifdef EXIM_HAVE_OPENSSL_KEYLOG
{
- BIO * bp = BIO_new(BIO_s_mem());
- uschar * s;
- int len;
+ BIO * bp = BIO_new_fp(debug_file, BIO_NOCLOSE);
SSL_SESSION_print_keylog(bp, SSL_get_session(server_ssl));
- len = (int) BIO_get_mem_data(bp, CSS &s);
- debug_printf("%.*s", len, s);
BIO_free(bp);
}
#endif
@@ -2724,18 +2720,9 @@ DEBUG(D_tls)
debug_printf("SSL_connect succeeded\n");
#ifdef EXIM_HAVE_OPENSSL_KEYLOG
{
- BIO * bp = BIO_new(BIO_s_mem());
- if (bp)
- {
- uschar * s;
- int len;
- SSL_SESSION_print_keylog(bp, SSL_get_session(exim_client_ctx->ssl));
- len = (int) BIO_get_mem_data(bp, CSS &s);
- debug_printf("%.*s", len, s);
- BIO_free(bp);
- }
- else
- debug_printf("(alloc failure for keylog)\n");
+ BIO * bp = BIO_new_fp(debug_file, BIO_NOCLOSE);
+ SSL_SESSION_print_keylog(bp, SSL_get_session(exim_client_ctx->ssl));
+ BIO_free(bp);
}
#endif
}