You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2015/11/12 20:05:16 UTC

qpid-proton git commit: NO-JIRA: Fix error introduced in 193a7dd (PROTON-1036: c++: engine API)

Repository: qpid-proton
Updated Branches:
  refs/heads/master 91fe6e0fd -> 1b9223b55


NO-JIRA: Fix error introduced in 193a7dd (PROTON-1036: c++: engine API)


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/1b9223b5
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/1b9223b5
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/1b9223b5

Branch: refs/heads/master
Commit: 1b9223b5558455ce33492fb74c6ce8213626311c
Parents: 91fe6e0
Author: Alan Conway <ac...@redhat.com>
Authored: Thu Nov 12 14:05:04 2015 -0500
Committer: Alan Conway <ac...@redhat.com>
Committed: Thu Nov 12 14:05:04 2015 -0500

----------------------------------------------------------------------
 proton-c/bindings/cpp/src/connector.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/1b9223b5/proton-c/bindings/cpp/src/connector.cpp
----------------------------------------------------------------------
diff --git a/proton-c/bindings/cpp/src/connector.cpp b/proton-c/bindings/cpp/src/connector.cpp
index 3333441..49660ea 100644
--- a/proton-c/bindings/cpp/src/connector.cpp
+++ b/proton-c/bindings/cpp/src/connector.cpp
@@ -40,7 +40,7 @@ void connector::address(const url &a) {
 
 void connector::connect() {
     pn_connection_t *conn = pn_cast(connection_);
-    pn_connection_set_container(conn, connection_->container_id().c_str());
+    pn_connection_set_container(conn, connection_->container().id().c_str());
     pn_connection_set_hostname(conn, address_.host_port().c_str());
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org