diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2011-06-06 13:02:16 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2011-06-06 13:02:16 +0000 |
| commit | 9c3462dc59715e93510a29ebf294b4a2b9db3a50 (patch) | |
| tree | a02805959c14e79aa2b8f6c490c840e3028ff8a7 /cpp/src/qpid/cluster/Connection.cpp | |
| parent | 962e378d61c760c5cc1b3c30971faa8d403072b1 (diff) | |
| download | qpid-python-9c3462dc59715e93510a29ebf294b4a2b9db3a50.tar.gz | |
QPID-3288: "[C++] Broker sets federation link tag as empty string () when no tag is present in the client/server properties"
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1132623 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/Connection.cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/Connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/cluster/Connection.cpp b/cpp/src/qpid/cluster/Connection.cpp index b9895290e9..ab42122813 100644 --- a/cpp/src/qpid/cluster/Connection.cpp +++ b/cpp/src/qpid/cluster/Connection.cpp @@ -322,10 +322,10 @@ size_t Connection::decode(const char* data, size_t size) { while (localDecoder.decode(buf)) received(localDecoder.getFrame()); if (!wasOpen && connection->isOpen()) { - // Connections marked as federation links are allowed to proxy + // Connections marked with setUserProxyAuth are allowed to proxy // messages with user-ID that doesn't match the connection's // authenticated ID. This is important for updates. - connection->setFederationLink(isCatchUp()); + connection->setUserProxyAuth(isCatchUp()); } } else { // Multicast local connections. |
