summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReferenceFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r--cpp/src/Ice/ReferenceFactory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp
index e296e3e32fc..40272aca13d 100644
--- a/cpp/src/Ice/ReferenceFactory.cpp
+++ b/cpp/src/Ice/ReferenceFactory.cpp
@@ -457,10 +457,10 @@ IceInternal::ReferenceFactory::create(const string& str)
}
string es = s.substr(beg, end - beg);
- EndpointIPtr endp = _instance->endpointFactoryManager()->create(es);
+ EndpointIPtr endp = _instance->endpointFactoryManager()->create(es, false);
if(endp != 0)
{
- vector<EndpointIPtr> endps = endp->expand(false);
+ vector<EndpointIPtr> endps = endp->expand();
endpoints.insert(endpoints.end(), endps.begin(), endps.end());
}
else