diff options
| author | Gordon Sim <gsim@apache.org> | 2009-06-08 08:19:23 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2009-06-08 08:19:23 +0000 |
| commit | e41775d2a65972b312029c0fd70c21ecaf9ed1dd (patch) | |
| tree | bd96739ed4774a47481ef3031fe2f2132c97c61a /cpp/src | |
| parent | 832a2908c52cf00488361993085867de34dd6335 (diff) | |
| download | qpid-python-e41775d2a65972b312029c0fd70c21ecaf9ed1dd.tar.gz | |
Fix change in test logic introduced by r782075.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@782555 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/qpid/broker/Queue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Queue.cpp b/cpp/src/qpid/broker/Queue.cpp index ffe743bac1..dff28f189e 100644 --- a/cpp/src/qpid/broker/Queue.cpp +++ b/cpp/src/qpid/broker/Queue.cpp @@ -1022,5 +1022,5 @@ void Queue::enqueued(const QueuedMessage& m) bool Queue::isEnqueued(const QueuedMessage& msg) { - return policy.get() && policy->isEnqueued(msg); + return !policy.get() || policy->isEnqueued(msg); } |
