summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2020-10-10 18:18:01 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2020-10-10 18:18:01 +0100
commit7e8793815bb43f97a022c6b71850206dbbd5d378 (patch)
tree7ee99500f226bf07817e9044d572c7660d2f2503 /src
parentfe192666f5de206b57cbbe07a4d90fd4868ea90b (diff)
Testsuite & OpenSSL debug: regularise debug output, and fix test munging
Diffstat (limited to 'src')
-rw-r--r--src/src/tls-openssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c
index 050b36c40..700b01d92 100644
--- a/src/src/tls-openssl.c
+++ b/src/src/tls-openssl.c
@@ -704,12 +704,12 @@ if (Ustrcmp(exp_curve, "auto") == 0)
#else
# if defined SSL_CTRL_SET_ECDH_AUTO
DEBUG(D_tls) debug_printf(
- "ECDH OpenSSL 1.0.2+ temp key parameter settings: autoselection\n");
+ "ECDH OpenSSL 1.0.2+: temp key parameter settings: autoselection\n");
SSL_CTX_set_ecdh_auto(sctx, 1);
return TRUE;
# else
DEBUG(D_tls) debug_printf(
- "ECDH OpenSSL 1.1.0+ temp key parameter settings: default selection\n");
+ "ECDH OpenSSL 1.1.0+: temp key parameter settings: default selection\n");
return TRUE;
# endif
#endif