diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceSSL/Instance.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/IceSSL/Instance.cpp b/cpp/src/IceSSL/Instance.cpp index fcd62d549ce..3dfa02a639c 100644 --- a/cpp/src/IceSSL/Instance.cpp +++ b/cpp/src/IceSSL/Instance.cpp @@ -170,14 +170,14 @@ IceSSL::Instance::sslErrors() const char buf[200]; ERR_error_string_n(err, buf, sizeof(buf)); - ostr << "Thread ID: " << threadId << endl; - ostr << "Error #: " << err << endl; - ostr << "Message: " << buf << endl; - ostr << "Location: " << file << ", " << line; + ostr << "thread id = " << threadId << endl; + ostr << "error # = " << err << endl; + ostr << "message = " << buf << endl; + ostr << "location = " << file << ", " << line; if(flags & ERR_TXT_STRING) { ostr << endl; - ostr << "Data: " << data; + ostr << "data = " << data; } } else |