diff options
-rw-r--r-- | cpp/src/IceSSL/SslTransceiver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceSSL/SslTransceiver.cpp b/cpp/src/IceSSL/SslTransceiver.cpp index d0343372fb9..501fb30248e 100644 --- a/cpp/src/IceSSL/SslTransceiver.cpp +++ b/cpp/src/IceSSL/SslTransceiver.cpp @@ -995,10 +995,10 @@ IceSSL::SslTransceiver::showSelectedCipherInfo(BIO* bio) cipher = SSL_get_current_cipher(_sslConnection); str = SSL_CIPHER_get_name(cipher); - BIO_printf(bio, "Cipher Version: %s\n", ((str != 0) ? str : "(NONE)")); + BIO_printf(bio, "Cipher Name: %s\n", ((str != 0) ? str : "(NONE)")); str = SSL_CIPHER_get_version(cipher); - BIO_printf(bio, "Cipher Name: %s\n", ((str != 0) ? str : "(NONE)")); + BIO_printf(bio, "Cipher Version: %s\n", ((str != 0) ? str : "(NONE)")); } void |