diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/config/IcePackAdmin.py | 2 | ||||
-rw-r--r-- | cpp/doc/Properties.sgml | 2 | ||||
-rw-r--r-- | cpp/src/IcePack/LocatorRegistryI.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cpp/config/IcePackAdmin.py b/cpp/config/IcePackAdmin.py index f888a37bbe0..39c33cee4bd 100644 --- a/cpp/config/IcePackAdmin.py +++ b/cpp/config/IcePackAdmin.py @@ -34,7 +34,7 @@ def startIcePackRegistry(toplevel, port, testdir): r' --IcePack.Registry.Internal.Endpoints=default' + \ r' --IcePack.Registry.Admin.Endpoints=default' + \ r' --IcePack.Registry.Data=' + dataDir + \ - r' --IcePack.Registry.AllowNotRegisteredAdapters' + \ + r' --IcePack.Registry.AllowUnregisteredAdapters' + \ r' --Ice.ProgramName=icepackregistry' icePackPipe = os.popen(command) diff --git a/cpp/doc/Properties.sgml b/cpp/doc/Properties.sgml index f2c70ca34db..0bc50248091 100644 --- a/cpp/doc/Properties.sgml +++ b/cpp/doc/Properties.sgml @@ -931,7 +931,7 @@ Defines the path of the &IcePack; registry data directory. </section> </section> -<section><title>IcePack.Registry.AllowNotRegisteredAdapters</title> +<section><title>IcePack.Registry.AllowUnregisteredAdapters</title> <section><title>Synopsis</title> <synopsis> IcePack.Registry.AllowNotRegisteredAdapters=<replaceable>num</replaceable> 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 |