Reworded SSL errors to be more consistent #4650
This commit is contained in:
parent
42ed1c2f27
commit
fd72bf17ce
|
@ -412,7 +412,7 @@ SecureSocket::checkResult(int status, int& retry)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SSL_ERROR_SYSCALL:
|
case SSL_ERROR_SYSCALL:
|
||||||
LOG((CLOG_ERR "ssl error occurred"));
|
LOG((CLOG_ERR "ssl error occurred (system call failure)"));
|
||||||
if (ERR_peek_error() == 0) {
|
if (ERR_peek_error() == 0) {
|
||||||
if (status == 0) {
|
if (status == 0) {
|
||||||
LOG((CLOG_ERR "eof violates ssl protocol"));
|
LOG((CLOG_ERR "eof violates ssl protocol"));
|
||||||
|
@ -432,12 +432,12 @@ SecureSocket::checkResult(int status, int& retry)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SSL_ERROR_SSL:
|
case SSL_ERROR_SSL:
|
||||||
LOG((CLOG_ERR "generic ssl error"));
|
LOG((CLOG_ERR "ssl error occurred (generic failure)"));
|
||||||
isFatal(true);
|
isFatal(true);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
LOG((CLOG_ERR "unknown ssl error"));
|
LOG((CLOG_ERR "ssl error occurred (unknown failure)"));
|
||||||
isFatal(true);
|
isFatal(true);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue