diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-03-14 19:43:45 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-03-14 19:43:45 +0000 |
commit | 48845ee139b9ecc40e352fa51e216e195e1956ba (patch) | |
tree | 1d07912867b27de514b57b957c10bd4198419aa5 /cpp/src/Ice/SslConfigErrorReporter.cpp | |
parent | Added shutdownOnInterrupt/ignoreInterrupt/defaultInterrupt to (diff) | |
download | ice-48845ee139b9ecc40e352fa51e216e195e1956ba.tar.bz2 ice-48845ee139b9ecc40e352fa51e216e195e1956ba.tar.xz ice-48845ee139b9ecc40e352fa51e216e195e1956ba.zip |
Cleanup, and project modifications (forgot the Release build config).
Diffstat (limited to 'cpp/src/Ice/SslConfigErrorReporter.cpp')
-rw-r--r-- | cpp/src/Ice/SslConfigErrorReporter.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cpp/src/Ice/SslConfigErrorReporter.cpp b/cpp/src/Ice/SslConfigErrorReporter.cpp index da605e7d8e7..9a73f92a360 100644 --- a/cpp/src/Ice/SslConfigErrorReporter.cpp +++ b/cpp/src/Ice/SslConfigErrorReporter.cpp @@ -21,6 +21,9 @@ using namespace std; +void ::IceInternal::incRef(::IceSSL::ErrorReporter* p) { p->__incRef(); }
+void ::IceInternal::decRef(::IceSSL::ErrorReporter* p) { p->__decRef(); }
+
void IceSSL::ErrorReporter::warning(const SAXParseException& toCatch) { @@ -28,7 +31,7 @@ IceSSL::ErrorReporter::warning(const SAXParseException& toCatch) { ostringstream s; - s << "SSL configuration file parse warning.\n" << flush; + s << "SSL configuration file parse warning." << endl; s << "Xerces-c Init Exception: Warning at file \"" << flush; s << DOMString(toCatch.getSystemId()) << flush; s << "\", line " << toCatch.getLineNumber() << flush; @@ -48,7 +51,7 @@ IceSSL::ErrorReporter::error(const SAXParseException& toCatch) { ostringstream s; - s << "SSL configuration file parse error.\n" << flush; + s << "SSL configuration file parse error." << endl; s << "Xerces-c Init Exception: Error at file \"" << flush; s << DOMString(toCatch.getSystemId()) << flush; s << "\", line " << toCatch.getLineNumber() << flush; @@ -68,7 +71,7 @@ IceSSL::ErrorReporter::fatalError(const SAXParseException& toCatch) { ostringstream s; - s << "SSL configuration file parse error.\n" << flush; + s << "SSL configuration file parse error." << endl; s << "Xerces-c Init Exception: Fatal error at file \"" << flush; s << DOMString(toCatch.getSystemId()) << flush; s << "\", line " << toCatch.getLineNumber() << flush; |