diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 16:18:58 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 16:18:58 +0000 |
commit | a304126403dc5ed49ed1b662d5d51e55d387d645 (patch) | |
tree | d0fe36c3c63f3f401769057f9c9f88a9ed829ae2 /cppe/src/IceE/ReferenceFactory.cpp | |
parent | Support "-h *" as well (diff) | |
download | ice-a304126403dc5ed49ed1b662d5d51e55d387d645.tar.bz2 ice-a304126403dc5ed49ed1b662d5d51e55d387d645.tar.xz ice-a304126403dc5ed49ed1b662d5d51e55d387d645.zip |
Bug 395 - support listen on all interfaces
Diffstat (limited to 'cppe/src/IceE/ReferenceFactory.cpp')
-rw-r--r-- | cppe/src/IceE/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/src/IceE/ReferenceFactory.cpp b/cppe/src/IceE/ReferenceFactory.cpp index 36282a05c26..59cad2db6aa 100644 --- a/cppe/src/IceE/ReferenceFactory.cpp +++ b/cppe/src/IceE/ReferenceFactory.cpp @@ -461,7 +461,7 @@ IceInternal::ReferenceFactory::create(const string& str) } string es = s.substr(beg, end - beg); - EndpointPtr endp = _instance->endpointFactory()->create(es); + EndpointPtr endp = _instance->endpointFactory()->create(es, false); if(endp != 0) { endpoints.push_back(endp); |