diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-04 17:25:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-04 17:25:23 +0000 |
commit | e95f3f732745314c7cfe3892477418898fdf6ce8 (patch) | |
tree | d2eed905621c03942d88026b7b94a0ce3fa4c691 /cppe/src/IceE/ReferenceFactory.cpp | |
parent | fixing log messages (diff) | |
download | ice-e95f3f732745314c7cfe3892477418898fdf6ce8.tar.bz2 ice-e95f3f732745314c7cfe3892477418898fdf6ce8.tar.xz ice-e95f3f732745314c7cfe3892477418898fdf6ce8.zip |
More changes wrt string conversion
Diffstat (limited to 'cppe/src/IceE/ReferenceFactory.cpp')
-rw-r--r-- | cppe/src/IceE/ReferenceFactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/src/IceE/ReferenceFactory.cpp b/cppe/src/IceE/ReferenceFactory.cpp index 13b5cc55e2e..38188992608 100644 --- a/cppe/src/IceE/ReferenceFactory.cpp +++ b/cppe/src/IceE/ReferenceFactory.cpp @@ -579,7 +579,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s) // For compatibility with the old FacetPath. // vector<string> facetPath; - s->read(facetPath, false); + s->read(facetPath); string facet; if(!facetPath.empty()) { @@ -630,7 +630,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s) { #ifdef ICEE_HAS_LOCATOR LocatorInfoPtr locatorInfo = _instance->locatorManager()->get(getDefaultLocator()); - s->read(adapterId, false); + s->read(adapterId); # ifdef ICEE_HAS_ROUTER return create(ident, _instance->initializationData().defaultContext, facet, mode, secure, adapterId, routerInfo, locatorInfo); |