diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-26 15:44:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-26 15:44:23 +0000 |
commit | b4d4280b01ee02fd05046b657b06e5fe745becde (patch) | |
tree | ec09f8ccac8b0de03d9efcfac65277529daf225b /cpp/src/IcePatch2/ClientUtil.cpp | |
parent | Updated icon (diff) | |
download | ice-b4d4280b01ee02fd05046b657b06e5fe745becde.tar.bz2 ice-b4d4280b01ee02fd05046b657b06e5fe745becde.tar.xz ice-b4d4280b01ee02fd05046b657b06e5fe745becde.zip |
More changes to inconsistent ice_ proxy methods
Diffstat (limited to 'cpp/src/IcePatch2/ClientUtil.cpp')
-rwxr-xr-x | cpp/src/IcePatch2/ClientUtil.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/IcePatch2/ClientUtil.cpp b/cpp/src/IcePatch2/ClientUtil.cpp index 8986ce37723..0cd356e93df 100755 --- a/cpp/src/IcePatch2/ClientUtil.cpp +++ b/cpp/src/IcePatch2/ClientUtil.cpp @@ -591,7 +591,8 @@ IcePatch2::Patcher::init(const FileServerPrx& server) // Make sure that _chunkSize doesn't exceed MessageSizeMax, otherwise // it won't work at all. // - int sizeMax = server->ice_communicator()->getProperties()->getPropertyAsIntWithDefault("Ice.MessageSizeMax", 1024); + int sizeMax = + server->ice_getCommunicator()->getProperties()->getPropertyAsIntWithDefault("Ice.MessageSizeMax", 1024); if(_chunkSize < 1) { const_cast<Int&>(_chunkSize) = 1; |