summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReferenceFactory.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-06-12 12:13:29 -0230
committerDwayne Boone <dwayne@zeroc.com>2007-06-12 12:13:29 -0230
commit4cf00523c0fcccfcfb3859467bb546d96201e65e (patch)
tree23df49beb9d9b737e7193a755dfd44e862859fd0 /cpp/src/Ice/ReferenceFactory.cpp
parentFixed bug 2220 (diff)
downloadice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.bz2
ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.tar.xz
ice-4cf00523c0fcccfcfb3859467bb546d96201e65e.zip
Bug 1658 - minor refactoring
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 40272aca13d..464fe51cc57 100644
--- a/cpp/src/Ice/ReferenceFactory.cpp
+++ b/cpp/src/Ice/ReferenceFactory.cpp
@@ -460,7 +460,7 @@ IceInternal::ReferenceFactory::create(const string& str)
EndpointIPtr endp = _instance->endpointFactoryManager()->create(es, false);
if(endp != 0)
{
- vector<EndpointIPtr> endps = endp->expand();
+ vector<EndpointIPtr> endps = endp->expand(true);
endpoints.insert(endpoints.end(), endps.begin(), endps.end());
}
else