summaryrefslogtreecommitdiff
path: root/cpp/lib/broker/Connection.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2007-02-01 13:27:03 +0000
committerAndrew Stitcher <astitcher@apache.org>2007-02-01 13:27:03 +0000
commit750f272ac99e8c830807affb3ae68ab0beeca63f (patch)
tree82628b7615938b82c90e4a35ac1bf8e698d31e82 /cpp/lib/broker/Connection.cpp
parente6643b0bb69327ef39dbf496694e6eea2163e839 (diff)
downloadqpid-python-750f272ac99e8c830807affb3ae68ab0beeca63f.tar.gz
Changed methodBody in Methodcontext to be a shared_ptr
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@502209 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/lib/broker/Connection.cpp')
-rw-r--r--cpp/lib/broker/Connection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/lib/broker/Connection.cpp b/cpp/lib/broker/Connection.cpp
index 5fcae39865..b45aa375e6 100644
--- a/cpp/lib/broker/Connection.cpp
+++ b/cpp/lib/broker/Connection.cpp
@@ -74,7 +74,7 @@ void Connection::initiated(qpid::framing::ProtocolInitiation* header) {
string locales("en_US");
// TODO aconway 2007-01-16: Client call, move to adapter.
client->getConnection().start(
- MethodContext(0, 0, &getAdapter(0)),
+ MethodContext(0, &getAdapter(0)),
header->getMajor(), header->getMinor(),
properties, mechanisms, locales);
getAdapter(0).init(0, *out, client->getProtocolVersion());