summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2003-01-03 19:48:22 +0000
committerBenoit Foucher <benoit@zeroc.com>2003-01-03 19:48:22 +0000
commit606c62f949704031e00a58fdbdc8e6de397397b5 (patch)
tree8d81611756986235fb6277f8c4bb23898b76a96b /cpp/src
parentRemoved extra tracing (diff)
downloadice-606c62f949704031e00a58fdbdc8e6de397397b5.tar.bz2
ice-606c62f949704031e00a58fdbdc8e6de397397b5.tar.xz
ice-606c62f949704031e00a58fdbdc8e6de397397b5.zip
Fixed Ice.Warn.Dispatch value
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Ice/Incoming.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Incoming.cpp b/cpp/src/Ice/Incoming.cpp
index 636a2862064..5dd44bf15c4 100644
--- a/cpp/src/Ice/Incoming.cpp
+++ b/cpp/src/Ice/Incoming.cpp
@@ -91,7 +91,7 @@ IceInternal::IncomingBase::__warning(const Exception& ex) const
void
IceInternal::IncomingBase::__warning(const string& msg) const
{
- if(_os.instance()->properties()->getPropertyAsIntWithDefault("Ice.Warn.Dispatch", 1) > 1)
+ if(_os.instance()->properties()->getPropertyAsIntWithDefault("Ice.Warn.Dispatch", 1) > 0)
{
Warning out(_os.instance()->logger());