diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-08-19 14:32:45 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-08-19 14:32:45 +0000 |
commit | e0723662ed260b5b39fd6aa310921d05a3f9ab2f (patch) | |
tree | 1f4130d7b58e66e62ef7652718d6c754d1ee0828 /cpp/src | |
parent | Hashtable constructor fix (diff) | |
download | ice-e0723662ed260b5b39fd6aa310921d05a3f9ab2f.tar.bz2 ice-e0723662ed260b5b39fd6aa310921d05a3f9ab2f.tar.xz ice-e0723662ed260b5b39fd6aa310921d05a3f9ab2f.zip |
bug fix
Diffstat (limited to 'cpp/src')
-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 |