summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2019-10-20 15:30:47 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2019-10-20 16:18:52 +0100
commit140036346c238d6126ea0dea5b7133c77316937c (patch)
treeeacc66c94350636293cbb7e78acda3db4105b0ca /src
parentfa9e4a1d04268f4a7e46166f70b6d5def10297f9 (diff)
OpenSSL: clarify log line for nonreceived required stapling
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 247da092f..1e3be6e32 100644
--- a/src/src/tls-openssl.c
+++ b/src/src/tls-openssl.c
@@ -1841,13 +1841,13 @@ OCSP_RESPONSE * rsp;
OCSP_BASICRESP * bs;
int i;
-DEBUG(D_tls) debug_printf("Received TLS status response (OCSP stapling):\n");
+DEBUG(D_tls) debug_printf("Received TLS status callback (OCSP stapling):\n");
len = SSL_get_tlsext_status_ocsp_resp(s, &p);
if(!p)
{
/* Expect this when we requested ocsp but got none */
if (cbinfo->u_ocsp.client.verify_required && LOGGING(tls_cipher))
- log_write(0, LOG_MAIN, "Received TLS status callback, null content");
+ log_write(0, LOG_MAIN, "Required TLS certificate status not received");
else
DEBUG(D_tls) debug_printf(" null\n");
return cbinfo->u_ocsp.client.verify_required ? 0 : 1;