From: Phil Pennock Date: Sat, 5 Jun 2010 09:36:11 +0000 (+0000) Subject: Doh, fix the error message to say SSL_read not SSL_write. X-Git-Tag: exim-4_73_RC0~55 X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=commitdiff_plain;h=89dd51cd40dadd2a3eae7de7057be3fa5ccefc8f Doh, fix the error message to say SSL_read not SSL_write. --- diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index dc341d326..02db7cd52 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/tls-openssl.c,v 1.24 2010/06/05 09:32:31 pdp Exp $ */ +/* $Cambridge: exim/src/src/tls-openssl.c,v 1.25 2010/06/05 09:36:11 pdp Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -903,7 +903,7 @@ if (ssl_xfer_buffer_lwm >= ssl_xfer_buffer_hwm) else if (error == SSL_ERROR_SSL) { ERR_error_string(ERR_get_error(), ssl_errstring); - log_write(0, LOG_MAIN, "TLS error (SSL_write): %s", ssl_errstring); + log_write(0, LOG_MAIN, "TLS error (SSL_read): %s", ssl_errstring); ssl_xfer_error = 1; return EOF; }