diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 15:21:18 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-10-06 15:21:18 +0000 |
commit | 3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf (patch) | |
tree | 3f90cde49d025a2f6afb05cfe77f1f6f36bb9f66 /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Updated properties. (diff) | |
download | ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.tar.bz2 ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.tar.xz ice-3a8c1051d39e2d5dae76dd7d146be46ca85e1ecf.zip |
Bug 395 - Added pseudo INVADDR_ANY support
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index 126786c92af..c3601a6d1a3 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -433,7 +433,7 @@ 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) { endpoints.push_back(endp); |