summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/EndpointFactoryManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/EndpointFactoryManager.cpp')
-rw-r--r--cpp/src/Ice/EndpointFactoryManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/EndpointFactoryManager.cpp b/cpp/src/Ice/EndpointFactoryManager.cpp
index 8536c6d0381..0c11e9170dc 100644
--- a/cpp/src/Ice/EndpointFactoryManager.cpp
+++ b/cpp/src/Ice/EndpointFactoryManager.cpp
@@ -64,7 +64,7 @@ IceInternal::EndpointFactoryManager::get(Short type) const
}
EndpointIPtr
-IceInternal::EndpointFactoryManager::create(const string& str) const
+IceInternal::EndpointFactoryManager::create(const string& str, bool adapterEndp) const
{
IceUtil::Mutex::Lock sync(*this); // TODO: Necessary?
@@ -98,7 +98,7 @@ IceInternal::EndpointFactoryManager::create(const string& str) const
{
if(_factories[i]->protocol() == protocol)
{
- return _factories[i]->create(str.substr(end));
+ return _factories[i]->create(str.substr(end), adapterEndp);
}
}