summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/SslConnector.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2012-08-29 17:51:29 +0000
committerAndrew Stitcher <astitcher@apache.org>2012-08-29 17:51:29 +0000
commit7a597aa3abcd271e6e7d90e7c8c8b0f2380d759b (patch)
tree5a9556a3c207c011c7d7acaa44ac7e81e495e0b3 /cpp/src/qpid/client/SslConnector.cpp
parentbff85b6d7e636f590b4ccccfcab766c314fede30 (diff)
downloadqpid-python-7a597aa3abcd271e6e7d90e7c8c8b0f2380d759b.tar.gz
NO-JIRA: Remove redundant stuff from SslSocket
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1378661 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/SslConnector.cpp')
-rw-r--r--cpp/src/qpid/client/SslConnector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/SslConnector.cpp b/cpp/src/qpid/client/SslConnector.cpp
index 43e8cf6225..0b07d14f35 100644
--- a/cpp/src/qpid/client/SslConnector.cpp
+++ b/cpp/src/qpid/client/SslConnector.cpp
@@ -184,7 +184,7 @@ void SslConnector::connect(const std::string& host, const std::string& port){
boost::bind(&SslConnector::writebuff, this, _1));
aio->createBuffers(maxFrameSize);
- identifier = str(format("[%1% %2%]") % socket.getLocalPort() % socket.getPeerAddress());
+ identifier = str(format("[%1%]") % socket.getFullAddress());
ProtocolInitiation init(version);
writeDataBlock(init);
aio->start(poller);