From: Viktor Dukhovni Date: Thu, 14 May 2020 01:56:26 +0000 (-0400) Subject: Also log the hsfunc, rfunc and wfunc pointers X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca46a03396038e320a3c660cdf2386e65826ff5c;p=thirdparty%2Fpostfix.git Also log the hsfunc, rfunc and wfunc pointers --- diff --git a/postfix/src/tls/tls_bio_ops.c b/postfix/src/tls/tls_bio_ops.c index 52b5d714d..93d3535d7 100644 --- a/postfix/src/tls/tls_bio_ops.c +++ b/postfix/src/tls/tls_bio_ops.c @@ -207,7 +207,8 @@ int tls_bio(int fd, int timeout, TLS_SESS_STATE *TLScontext, err = SSL_get_error(TLScontext->con, status); if (TLScontext->log_mask & TLS_LOG_IO) - msg_info("%s: SSL_get_error(%d) = %d", myname, status, err); + msg_info("%s: hsfunc=%p, rfunc=%p, wfunc=%p, SSL_get_error(%d) = %d", + myname, hsfunc, rfunc, wfunc, status, err); /* * Correspondence between SSL_ERROR_* error codes and tls_bio_(read,