diff options
Diffstat (limited to 'cpp/src/Ice/SslConnectionOpenSSLClient.cpp')
-rw-r--r-- | cpp/src/Ice/SslConnectionOpenSSLClient.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/SslConnectionOpenSSLClient.cpp b/cpp/src/Ice/SslConnectionOpenSSLClient.cpp index 328d9d6a5e1..b07b9566b71 100644 --- a/cpp/src/Ice/SslConnectionOpenSSLClient.cpp +++ b/cpp/src/Ice/SslConnectionOpenSSLClient.cpp @@ -167,7 +167,7 @@ IceSSL::OpenSSL::ClientConnection::init(int timeout) ProtocolException protocolEx(__FILE__, __LINE__); // Protocol Error: Unexpected EOF - protocolEx._message = "Encountered an EOF during handshake that violates the SSL Protocol.\n"; + protocolEx._message = "encountered an EOF during handshake that violates the ssl protocol\n"; protocolEx._message += sslGetErrors(); throw protocolEx;
@@ -182,7 +182,7 @@ IceSSL::OpenSSL::ClientConnection::init(int timeout) {
CertificateVerificationException certVerEx(__FILE__, __LINE__);
- certVerEx._message = "SSL certificate verification error.";
+ certVerEx._message = "ssl certificate verification error";
string errors = sslGetErrors();
@@ -198,7 +198,7 @@ IceSSL::OpenSSL::ClientConnection::init(int timeout) {
ProtocolException protocolEx(__FILE__, __LINE__); - protocolEx._message = "Encountered a violation of the SSL Protocol during handshake.\n"; + protocolEx._message = "encountered a violation of the ssl protocol during handshake\n"; protocolEx._message += sslGetErrors(); throw protocolEx; @@ -331,7 +331,7 @@ IceSSL::OpenSSL::ClientConnection::write(Buffer& buf, int timeout) ProtocolException protocolEx(__FILE__, __LINE__); // Protocol Error: Unexpected EOF - protocolEx._message = "Encountered an EOF that violates the SSL Protocol.\n"; + protocolEx._message = "encountered an EOF that violates the ssl protocol\n"; protocolEx._message += sslGetErrors(); throw protocolEx; @@ -347,7 +347,7 @@ IceSSL::OpenSSL::ClientConnection::write(Buffer& buf, int timeout) { ProtocolException protocolEx(__FILE__, __LINE__); - protocolEx._message = "Encountered a violation of the SSL Protocol.\n"; + protocolEx._message = "encountered a violation of the ssl protocol\n"; protocolEx._message += sslGetErrors(); throw protocolEx; |