summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/SessionManager.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-11-29 09:25:19 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-11-29 09:25:19 +0000
commit55d4301510cd67fc11638255df6b94574f9d49b5 (patch)
treef4a631a5e8de10c511c6bc3ee9d8aad3c6b577d2 /cpp/src/IceGrid/SessionManager.h
parentvarious file chooser enhancements (diff)
downloadice-55d4301510cd67fc11638255df6b94574f9d49b5.tar.bz2
ice-55d4301510cd67fc11638255df6b94574f9d49b5.tar.xz
ice-55d4301510cd67fc11638255df6b94574f9d49b5.zip
Fixes
Diffstat (limited to 'cpp/src/IceGrid/SessionManager.h')
-rw-r--r--cpp/src/IceGrid/SessionManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/SessionManager.h b/cpp/src/IceGrid/SessionManager.h
index 30326f6a79c..7d659d593ea 100644
--- a/cpp/src/IceGrid/SessionManager.h
+++ b/cpp/src/IceGrid/SessionManager.h
@@ -196,7 +196,7 @@ public:
{
Lock sync(*this);
// Wait until the action is executed and the state changes.
- while((_nextAction == Connect || _nextAction == KeepAlive) || _state == InProgress)
+ while(_nextAction == Connect || _nextAction == KeepAlive || _state == InProgress)
{
wait();
}