diff options
author | Gordon Sim <gsim@apache.org> | 2008-09-24 15:49:23 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-09-24 15:49:23 +0000 |
commit | 40c2000d2b94b30f67d2357a01286edc37121238 (patch) | |
tree | bf284519362c573c10fa91d176da5e99cd3e2b14 /cpp | |
parent | 3e33a73b2f351be2c4d7bbf71eab6320bebb8204 (diff) | |
download | qpid-python-40c2000d2b94b30f67d2357a01286edc37121238.tar.gz |
Corrected a careless mistake I made on an earlier commit.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@698615 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/broker/SemanticState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SemanticState.cpp b/cpp/src/qpid/broker/SemanticState.cpp index 3a0bdefcb1..7907b47854 100644 --- a/cpp/src/qpid/broker/SemanticState.cpp +++ b/cpp/src/qpid/broker/SemanticState.cpp @@ -598,7 +598,7 @@ void SemanticState::ConsumerImpl::enableNotify() void SemanticState::ConsumerImpl::disableNotify() { Mutex::ScopedLock l(lock); - notifyEnabled = true; + notifyEnabled = false; } void SemanticState::ConsumerImpl::notify() |