diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-10-27 14:55:05 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-10-27 14:55:05 +0000 |
commit | e0b774fb217ab80ce764a187c0c5d5e3a9cda0a6 (patch) | |
tree | c61d84e442fc3d95ac4a77b1eaffbdb2d6ef59a8 /cpp/src/Ice/RoutingTable.cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=547 (diff) | |
download | ice-e0b774fb217ab80ce764a187c0c5d5e3a9cda0a6.tar.bz2 ice-e0b774fb217ab80ce764a187c0c5d5e3a9cda0a6.tar.xz ice-e0b774fb217ab80ce764a187c0c5d5e3a9cda0a6.zip |
Removed ice_default()
Diffstat (limited to 'cpp/src/Ice/RoutingTable.cpp')
-rw-r--r-- | cpp/src/Ice/RoutingTable.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/Ice/RoutingTable.cpp b/cpp/src/Ice/RoutingTable.cpp index 7e05be629c5..78c93dd31ae 100644 --- a/cpp/src/Ice/RoutingTable.cpp +++ b/cpp/src/Ice/RoutingTable.cpp @@ -39,7 +39,10 @@ IceInternal::RoutingTable::add(const ObjectPrx& prx) return false; } - ObjectPrx proxy = prx->ice_default(); // We insert the proxy in its default form into the routing table. + // + // We insert the proxy in its default form into the routing table. + // + ObjectPrx proxy = prx->ice_twoway()->ice_secure(false); IceUtil::Mutex::Lock sync(*this); |