summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/client/ConnectionImpl.cpp
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2009-01-15 11:15:16 +0000
committerGordon Sim <gsim@apache.org>2009-01-15 11:15:16 +0000
commita48340c029e7d7c4e3085e2d15632d5fb45f9343 (patch)
treeeff838e15b357b4779037f3052426ccf6fdd4b69 /cpp/src/qpid/client/ConnectionImpl.cpp
parentcdf022dc39cb6568b90c03537423ba4419884723 (diff)
downloadqpid-python-a48340c029e7d7c4e3085e2d15632d5fb45f9343.tar.gz
Minor formatting fixes and typo correction.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@734668 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/ConnectionImpl.cpp')
-rw-r--r--cpp/src/qpid/client/ConnectionImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/client/ConnectionImpl.cpp b/cpp/src/qpid/client/ConnectionImpl.cpp
index 46ef9eda1e..d0e47b774f 100644
--- a/cpp/src/qpid/client/ConnectionImpl.cpp
+++ b/cpp/src/qpid/client/ConnectionImpl.cpp
@@ -95,7 +95,7 @@ void ConnectionImpl::addSession(const boost::shared_ptr<SessionImpl>& session, u
session->setChannel(channel ? channel : nextChannel++);
boost::weak_ptr<SessionImpl>& s = sessions[session->getChannel()];
boost::shared_ptr<SessionImpl> ss = s.lock();
- if (ss) throw SessionBusyException(QPID_MSG("Channel " << ss->getChannel() << " attachd to " << ss->getId()));
+ if (ss) throw SessionBusyException(QPID_MSG("Channel " << ss->getChannel() << " attached to " << ss->getId()));
s = session;
}