diff options
Diffstat (limited to 'cpp/src/IceSSL/GeneralConfig.h')
-rw-r--r-- | cpp/src/IceSSL/GeneralConfig.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/IceSSL/GeneralConfig.h b/cpp/src/IceSSL/GeneralConfig.h index 3b9850202cd..2da3e2e14c2 100644 --- a/cpp/src/IceSSL/GeneralConfig.h +++ b/cpp/src/IceSSL/GeneralConfig.h @@ -51,12 +51,12 @@ protected: template<class Stream> inline Stream& operator << (Stream& target, const GeneralConfig& generalConfig) { - target << "Protocol: " << generalConfig.getProtocol() << std::endl; - target << "Verify Mode: " << generalConfig.getVerifyMode() << std::endl; - target << "Verify Depth: " << generalConfig.getVerifyDepth() << std::endl; - target << "Context: " << generalConfig.getContext() << std::endl; - target << "Cipher List: " << generalConfig.getCipherList() << std::endl; - target << "Random Bytes: " << generalConfig.getRandomBytesFiles() << std::endl; + target << "Protocol: " << generalConfig.getProtocol() << "\n"; + target << "Verify Mode: " << generalConfig.getVerifyMode() << "\n"; + target << "Verify Depth: " << generalConfig.getVerifyDepth() << "\n"; + target << "Context: " << generalConfig.getContext() << "\n"; + target << "Cipher List: " << generalConfig.getCipherList() << "\n"; + target << "Random Bytes: " << generalConfig.getRandomBytesFiles() << "\n"; return target; } |