diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-02-13 17:53:37 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-02-13 17:53:37 +0000 |
commit | 966060d3a694438bc977ff5be79e33c77ace765a (patch) | |
tree | 78b9e96a2ac9a94e7379f9f4b5ce1c67b6a941d0 /cpp/src/Ice/EndpointFactoryManager.cpp | |
parent | Fix (diff) | |
download | ice-966060d3a694438bc977ff5be79e33c77ace765a.tar.bz2 ice-966060d3a694438bc977ff5be79e33c77ace765a.tar.xz ice-966060d3a694438bc977ff5be79e33c77ace765a.zip |
Bug 804 - no endpoint in reference means try all local interfaces
Diffstat (limited to 'cpp/src/Ice/EndpointFactoryManager.cpp')
-rw-r--r-- | cpp/src/Ice/EndpointFactoryManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/EndpointFactoryManager.cpp b/cpp/src/Ice/EndpointFactoryManager.cpp index 0c11e9170dc..8536c6d0381 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, bool adapterEndp) const +IceInternal::EndpointFactoryManager::create(const string& str) const { IceUtil::Mutex::Lock sync(*this); // TODO: Necessary? @@ -98,7 +98,7 @@ IceInternal::EndpointFactoryManager::create(const string& str, bool adapterEndp) { if(_factories[i]->protocol() == protocol) { - return _factories[i]->create(str.substr(end), adapterEndp); + return _factories[i]->create(str.substr(end)); } } |