diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-02 16:55:15 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-02 16:55:15 +0000 |
commit | 7a589cb97a18ad905339a20824fe5b0bfc90cc9f (patch) | |
tree | f65567a89f46899885dc995324e10368825902d2 /cpp/src/Ice/ContextOpenSSLClient.cpp | |
parent | initial clean-up (diff) | |
download | ice-7a589cb97a18ad905339a20824fe5b0bfc90cc9f.tar.bz2 ice-7a589cb97a18ad905339a20824fe5b0bfc90cc9f.tar.xz ice-7a589cb97a18ad905339a20824fe5b0bfc90cc9f.zip |
finished() fixes
Diffstat (limited to 'cpp/src/Ice/ContextOpenSSLClient.cpp')
-rw-r--r-- | cpp/src/Ice/ContextOpenSSLClient.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/ContextOpenSSLClient.cpp b/cpp/src/Ice/ContextOpenSSLClient.cpp index 50f75ce73b2..3689f00151b 100644 --- a/cpp/src/Ice/ContextOpenSSLClient.cpp +++ b/cpp/src/Ice/ContextOpenSSLClient.cpp @@ -35,16 +35,16 @@ IceSSL::OpenSSL::ClientContext::configure(const GeneralConfig& generalConfig, std::ostringstream s;
s << std::endl;
- s << "General Configuration - Client" << std::endl;
+ s << "general configuration (client)" << std::endl;
s << "------------------------------" << std::endl;
s << generalConfig << std::endl << std::endl;
- s << "Certificate Authority - Client" << std::endl;
+ s << "certificate authority (client)" << std::endl;
s << "------------------------------" << std::endl;
- s << "File: " << certificateAuthority.getCAFileName() << std::endl;
- s << "Path: " << certificateAuthority.getCAPath() << std::endl;
+ s << "file: " << certificateAuthority.getCAFileName() << std::endl;
+ s << "path: " << certificateAuthority.getCAPath() << std::endl;
- s << "Base Certificates - Client" << std::endl;
+ s << "base certificates (client)" << std::endl;
s << "--------------------------" << std::endl;
s << baseCertificates << std::endl;
|