summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2011-09-27 20:33:56 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2011-09-27 20:33:56 +0000
commit50c30ee93cfdb958a69ac459b45792e68bc3978e (patch)
treee76dfabb05f9636e714f408337f1ba1e65eca49e
parent64fc8f6eee884ce3fea3fd98fe8da8ee92e67b03 (diff)
downloadqpid-python-50c30ee93cfdb958a69ac459b45792e68bc3978e.tar.gz
QPID-3346: fix misleading comment
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qpid-3346@1176602 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/broker/MessageGroupManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/MessageGroupManager.cpp b/qpid/cpp/src/qpid/broker/MessageGroupManager.cpp
index 485dc763cf..c26185cd3e 100644
--- a/qpid/cpp/src/qpid/broker/MessageGroupManager.cpp
+++ b/qpid/cpp/src/qpid/broker/MessageGroupManager.cpp
@@ -236,7 +236,7 @@ bool MessageGroupManager::allocate(const std::string& consumer, const QueuedMess
bool MessageGroupManager::nextBrowsableMessage( Consumer::shared_ptr& c, QueuedMessage& next )
{
- // browse: allow access to any aquired msg, regardless of group ownership (?ok?)
+ // browse: allow access to any available msg, regardless of group ownership (?ok?)
if (!messages.empty() && messages.next(c->position, next))
return true;
return false;