diff options
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);
|