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/SslConnectionOpenSSL.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/SslConnectionOpenSSL.cpp')
-rw-r--r-- | cpp/src/Ice/SslConnectionOpenSSL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/SslConnectionOpenSSL.cpp b/cpp/src/Ice/SslConnectionOpenSSL.cpp index 0dbcd79a689..7a13f3a18de 100644 --- a/cpp/src/Ice/SslConnectionOpenSSL.cpp +++ b/cpp/src/Ice/SslConnectionOpenSSL.cpp @@ -525,7 +525,7 @@ IceSecurity::Ssl::OpenSSL::Connection::readSSL(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);
|