git://git.exim.org
/
users
/
jgh
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
ba08464
)
Doh, fix the error message to say SSL_read not SSL_write.
author
Phil Pennock
<pdp@exim.org>
Sat, 5 Jun 2010 09:36:11 +0000
(09:36 +0000)
committer
Phil Pennock
<pdp@exim.org>
Sat, 5 Jun 2010 09:36:11 +0000
(09:36 +0000)
src/src/tls-openssl.c
patch
|
blob
|
history
diff --git
a/src/src/tls-openssl.c
b/src/src/tls-openssl.c
index dc341d326926bda40ceec122e85681e097029bc4..02db7cd526675c62c97e5c20b49cffb4eba25279 100644
(file)
--- 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.2
4 2010/06/05 09:32:3
1 pdp Exp $ */
+/* $Cambridge: exim/src/src/tls-openssl.c,v 1.2
5 2010/06/05 09:36:1
1 pdp Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
/*************************************************
* 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);
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;
}
ssl_xfer_error = 1;
return EOF;
}