summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/ClientUtil.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-02-14 13:57:26 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-02-14 13:57:26 +0000
commitc4cbcf3d83cc23ffa1b09ae513799e39f671c054 (patch)
tree7c37232e433131ca5d788dcb5d909c8efcf2d80d /cpp/src/IcePatch2/ClientUtil.cpp
parentupdate x64 components (diff)
downloadice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.tar.bz2
ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.tar.xz
ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.zip
Removed use of Ice.OA.
Diffstat (limited to 'cpp/src/IcePatch2/ClientUtil.cpp')
-rwxr-xr-xcpp/src/IcePatch2/ClientUtil.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/IcePatch2/ClientUtil.cpp b/cpp/src/IcePatch2/ClientUtil.cpp
index 64b3f472bed..07453c4af41 100755
--- a/cpp/src/IcePatch2/ClientUtil.cpp
+++ b/cpp/src/IcePatch2/ClientUtil.cpp
@@ -156,9 +156,8 @@ IcePatch2::Patcher::Patcher(const CommunicatorPtr& communicator, const PatcherFe
{
PropertiesPtr properties = communicator->getProperties();
- const char* endpointsProperty = "Ice.OA.IcePatch2.Endpoints";
- string endpoints = properties->getPropertyWithDefault(endpointsProperty,
- properties->getProperty("IcePatch2.Endpoints"));
+ const char* endpointsProperty = "IcePatch2.Endpoints";
+ string endpoints = properties->getProperty(endpointsProperty);
if(endpoints.empty())
{
throw string("property `") + endpointsProperty + "' is not set";