diff options
Diffstat (limited to 'cpp/src/IceSSL/ConfigParser.cpp')
-rw-r--r-- | cpp/src/IceSSL/ConfigParser.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/IceSSL/ConfigParser.cpp b/cpp/src/IceSSL/ConfigParser.cpp index 59057123aa7..33d999274bb 100644 --- a/cpp/src/IceSSL/ConfigParser.cpp +++ b/cpp/src/IceSSL/ConfigParser.cpp @@ -78,7 +78,7 @@ IceSSL::ConfigParser::process() ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while parsing " << _configFile << ":" << endl; + s << "while parsing " << _configFile << ":\n"; s << "xerces-c init exception: " << toString(toCatch.getMessage()); configEx.message = s.str(); @@ -148,7 +148,7 @@ IceSSL::ConfigParser::process() ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while parsing " << _configFile << ":" << endl; + s << "while parsing " << _configFile << ":\n"; s << "xerces-c parsing error: " << toString(e.getMessage()); configEx.message = s.str(); @@ -160,7 +160,7 @@ IceSSL::ConfigParser::process() ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while parsing " << _configFile << ":" << endl; + s << "while parsing " << _configFile << ":\n"; s << "xerces-c DOM parsing error, DOMException code: " << e.code; s << ", message: " << e.msg; @@ -224,7 +224,7 @@ IceSSL::ConfigParser::loadClientConfig(GeneralConfig& general, ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while loading client configuration:" << endl; + s << "while loading client configuration:\n"; s << "xerces-c DOM parsing error, DOMException code: " << e.code; s << ", message: " << e.msg; @@ -262,7 +262,7 @@ IceSSL::ConfigParser::loadServerConfig(GeneralConfig& general, ConfigParseException configEx(__FILE__, __LINE__); ostringstream s; - s << "while loading server configuration:" << endl; + s << "while loading server configuration:\n"; s << "xerces-c DOM parsing error, DOMException code: " << e.code; s << ", message: " << e.msg; |