summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/DeliveryRecord.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/broker/DeliveryRecord.h')
-rw-r--r--cpp/src/qpid/broker/DeliveryRecord.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/DeliveryRecord.h b/cpp/src/qpid/broker/DeliveryRecord.h
index 5a331357be..d388ba94be 100644
--- a/cpp/src/qpid/broker/DeliveryRecord.h
+++ b/cpp/src/qpid/broker/DeliveryRecord.h
@@ -46,7 +46,7 @@ class DeliveryRecord
{
QueuedMessage msg;
mutable boost::shared_ptr<Queue> queue;
- std::string tag; // name of consumer
+ std::string tag;
DeliveryId id;
bool acquired : 1;
bool acceptExpected : 1;
@@ -90,7 +90,7 @@ class DeliveryRecord
bool isAcquired() const { return acquired; }
bool isComplete() const { return completed; }
- bool isRedundant() const { return ended && (!windowing || completed || cancelled); }
+ bool isRedundant() const { return ended && (!windowing || completed); }
bool isCancelled() const { return cancelled; }
bool isAccepted() const { return !acceptExpected; }
bool isEnded() const { return ended; }