Revert "Fixed: Exception was not thrown on secure accept/connect #4313"

This reverts commit c5ed03a8a0.
This commit is contained in:
Nick Bolton 2015-03-04 11:43:42 +00:00
parent cfd21216cd
commit 6ef41522b7
1 changed files with 0 additions and 2 deletions

View File

@ -227,7 +227,6 @@ SecureSocket::secureAccept(int socket)
catch (XSocket& e) {
LOG((CLOG_ERR "failed to accept secure connection"));
LOG((CLOG_INFO "client may have encryption disabled"));
throw e;
}
return retry;
@ -253,7 +252,6 @@ SecureSocket::secureConnect(int socket)
catch (XSocket& e) {
LOG((CLOG_ERR "failed to establish secure connection"));
LOG((CLOG_INFO "server may have encryption disabled"));
throw e;
}
m_secureReady = !retry;