summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ObjectAdapterI.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-02-13 17:53:37 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-02-13 17:53:37 +0000
commit966060d3a694438bc977ff5be79e33c77ace765a (patch)
tree78b9e96a2ac9a94e7379f9f4b5ce1c67b6a941d0 /cpp/src/Ice/ObjectAdapterI.cpp
parentFix (diff)
downloadice-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/ObjectAdapterI.cpp')
-rw-r--r--cpp/src/Ice/ObjectAdapterI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.cpp b/cpp/src/Ice/ObjectAdapterI.cpp
index 1932afdb59c..50449cf6c50 100644
--- a/cpp/src/Ice/ObjectAdapterI.cpp
+++ b/cpp/src/Ice/ObjectAdapterI.cpp
@@ -988,14 +988,14 @@ Ice::ObjectAdapterI::parseEndpoints(const string& str) const
}
string s = endpts.substr(beg, end - beg);
- EndpointIPtr endp = _instance->endpointFactoryManager()->create(s, true);
+ EndpointIPtr endp = _instance->endpointFactoryManager()->create(s);
if(endp == 0)
{
EndpointParseException ex(__FILE__, __LINE__);
ex.str = s;
throw ex;
}
- vector<EndpointIPtr> endps = endp->expand();
+ vector<EndpointIPtr> endps = endp->expand(true);
endpoints.insert(endpoints.end(), endps.begin(), endps.end());
++end;