summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2002-09-04 20:40:58 +0000
committerBenoit Foucher <benoit@zeroc.com>2002-09-04 20:40:58 +0000
commit1c9a1a3effb223be85723a7a8faaa6c5535a7c47 (patch)
treeb3a2ac63d08e565f4972b20723cce3d34d2f7343 /cpp/src
parent:LocatorRegistry::addAdapter method to setAdapterDirectProxy (diff)
downloadice-1c9a1a3effb223be85723a7a8faaa6c5535a7c47.tar.bz2
ice-1c9a1a3effb223be85723a7a8faaa6c5535a7c47.tar.xz
ice-1c9a1a3effb223be85723a7a8faaa6c5535a7c47.zip
Fix
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IcePack/LocatorRegistryI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/LocatorRegistryI.cpp b/cpp/src/IcePack/LocatorRegistryI.cpp
index ebe793821c3..78cfaece9bf 100644
--- a/cpp/src/IcePack/LocatorRegistryI.cpp
+++ b/cpp/src/IcePack/LocatorRegistryI.cpp
@@ -78,7 +78,7 @@ IcePack::LocatorRegistryI::setAdapterDirectProxy(const string& name, const Ice::
// IcePack deployment mechanism).
//
Ice::PropertiesPtr properties = _adapter->getCommunicator()->getProperties();
- if(properties->getPropertyAsInt("IcePack.Registry.AllowNotRegisteredAdapters") > 0)
+ if(properties->getPropertyAsInt("IcePack.Registry.AllowUnregisteredAdapters") > 0)
{
AdapterPrx adapter = AdapterPrx::uncheckedCast(_adapter->addWithUUID(new StandaloneAdapterI()));
try