diff options
author | Anthony Neal <aneal@zeroc.com> | 2001-11-18 12:34:53 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2001-11-18 12:34:53 +0000 |
commit | 605bc540f4d839d3a17a6ce0db1c20051ec6a7b3 (patch) | |
tree | a574736a776edc0a4d4793ba3ea7a2cf0f0e26b9 /cpp/src/Ice/SslConnectionOpenSSLClient.cpp | |
parent | SSL Update: (diff) | |
download | ice-605bc540f4d839d3a17a6ce0db1c20051ec6a7b3.tar.bz2 ice-605bc540f4d839d3a17a6ce0db1c20051ec6a7b3.tar.xz ice-605bc540f4d839d3a17a6ce0db1c20051ec6a7b3.zip |
Fixed some bugs regarding exception message reporting.
Diffstat (limited to 'cpp/src/Ice/SslConnectionOpenSSLClient.cpp')
-rw-r--r-- | cpp/src/Ice/SslConnectionOpenSSLClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/SslConnectionOpenSSLClient.cpp b/cpp/src/Ice/SslConnectionOpenSSLClient.cpp index f4a7ad02a58..d4a7cf4e0dc 100644 --- a/cpp/src/Ice/SslConnectionOpenSSLClient.cpp +++ b/cpp/src/Ice/SslConnectionOpenSSLClient.cpp @@ -184,7 +184,7 @@ IceSecurity::Ssl::OpenSSL::ClientConnection::init(int timeout) case SSL_ERROR_SSL:
{
- string errorString = "Encountered a violation the SSL Protocol during handshake.\n";
+ string errorString = "Encountered a violation of the SSL Protocol during handshake.\n";
ICE_SSLERRORS(errorString);
ICE_EXCEPTION(errorString);
@@ -402,7 +402,7 @@ IceSecurity::Ssl::OpenSSL::ClientConnection::write(Buffer& buf, int timeout) case SSL_ERROR_SSL:
{
- string errorString = "Encountered a violation the SSL Protocol.\n";
+ string errorString = "Encountered a violation of the SSL Protocol.\n";
ICE_SSLERRORS(errorString);
ICE_EXCEPTION(errorString);
|