summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/Instance.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2006-04-20 15:46:13 +0000
committerMark Spruiell <mes@zeroc.com>2006-04-20 15:46:13 +0000
commit52b22454964aadffd00184ea66d3b96e699348cb (patch)
tree83deadb429de60dc7af42d1809d2f475d8583639 /cpp/src/IceSSL/Instance.cpp
parentchanging default value of VerifyDepthMax to 2 (diff)
downloadice-52b22454964aadffd00184ea66d3b96e699348cb.tar.bz2
ice-52b22454964aadffd00184ea66d3b96e699348cb.tar.xz
ice-52b22454964aadffd00184ea66d3b96e699348cb.zip
changing format of SSL errors
Diffstat (limited to 'cpp/src/IceSSL/Instance.cpp')
-rw-r--r--cpp/src/IceSSL/Instance.cpp10
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