summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReferenceFactory.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-08-21 13:11:48 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-08-21 13:11:48 +0000
commit88454251d3356793b4f1cc6d3f07929280a012bd (patch)
tree84a663bceb5ecd363c294418ccd5fe6ef3d977c3 /cpp/src/Ice/ReferenceFactory.cpp
parentTry loopback in client when no -h (diff)
downloadice-88454251d3356793b4f1cc6d3f07929280a012bd.tar.bz2
ice-88454251d3356793b4f1cc6d3f07929280a012bd.tar.xz
ice-88454251d3356793b4f1cc6d3f07929280a012bd.zip
Try loopback in client if no -h
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r--cpp/src/Ice/ReferenceFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp
index 6b720ec6321..83b75d626de 100644
--- a/cpp/src/Ice/ReferenceFactory.cpp
+++ b/cpp/src/Ice/ReferenceFactory.cpp
@@ -445,7 +445,7 @@ IceInternal::ReferenceFactory::create(const string& str)
EndpointIPtr endp = _instance->endpointFactoryManager()->create(es);
if(endp != 0)
{
- vector<EndpointIPtr> endps = endp->expand(false);
+ vector<EndpointIPtr> endps = endp->expand();
endpoints.insert(endpoints.end(), endps.begin(), endps.end());
}
else