summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2008-10-24 22:04:36 +0000
committerStephen D. Huston <shuston@apache.org>2008-10-24 22:04:36 +0000
commit4686a6b3d66ca451dae28f94586dbe9ae803f8a1 (patch)
tree7de50ef05f127d6074dfd0a424b47034a53fbff6 /qpid/cpp/src
parentbafede0daeea40bd7fc2826c5cf47a4d0ea62626 (diff)
downloadqpid-python-4686a6b3d66ca451dae28f94586dbe9ae803f8a1.tar.gz
Fix compile errors introduced by Address changes
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@707760 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/client/ConnectionImpl.cpp2
-rw-r--r--qpid/cpp/src/qpid/client/Connector.cpp2
-rw-r--r--qpid/cpp/src/qpid/client/SslConnector.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/qpid/client/ConnectionImpl.cpp b/qpid/cpp/src/qpid/client/ConnectionImpl.cpp
index b95f03164e..ca88de62dd 100644
--- a/qpid/cpp/src/qpid/client/ConnectionImpl.cpp
+++ b/qpid/cpp/src/qpid/client/ConnectionImpl.cpp
@@ -47,7 +47,7 @@ ConnectionImpl::ConnectionImpl(framing::ProtocolVersion v, const ConnectionSetti
version(v),
nextChannel(1)
{
- QPID_LOG(debug, "ConnectionImpl created for " << version);
+ QPID_LOG(debug, "ConnectionImpl created for " << version.toString());
handler.in = boost::bind(&ConnectionImpl::incoming, this, _1);
handler.out = boost::bind(&Connector::send, boost::ref(connector), _1);
handler.onClose = boost::bind(&ConnectionImpl::closed, this,
diff --git a/qpid/cpp/src/qpid/client/Connector.cpp b/qpid/cpp/src/qpid/client/Connector.cpp
index 67e9239224..f7a8d8b853 100644
--- a/qpid/cpp/src/qpid/client/Connector.cpp
+++ b/qpid/cpp/src/qpid/client/Connector.cpp
@@ -185,7 +185,7 @@ TCPConnector::TCPConnector(ProtocolVersion ver,
aio(0),
impl(cimpl)
{
- QPID_LOG(debug, "TCPConnector created for " << version);
+ QPID_LOG(debug, "TCPConnector created for " << version.toString());
settings.configureSocket(socket);
}
diff --git a/qpid/cpp/src/qpid/client/SslConnector.cpp b/qpid/cpp/src/qpid/client/SslConnector.cpp
index 4ea54a3b59..63f2f1a84f 100644
--- a/qpid/cpp/src/qpid/client/SslConnector.cpp
+++ b/qpid/cpp/src/qpid/client/SslConnector.cpp
@@ -174,7 +174,7 @@ SslConnector::SslConnector(ProtocolVersion ver,
aio(0),
impl(cimpl)
{
- QPID_LOG(debug, "SslConnector created for " << version);
+ QPID_LOG(debug, "SslConnector created for " << version.toString());
//TODO: how do we want to handle socket configuration with ssl?
//settings.configureSocket(socket);
}