summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch2/ClientUtil.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-05-26 15:44:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-05-26 15:44:23 +0000
commitb4d4280b01ee02fd05046b657b06e5fe745becde (patch)
treeec09f8ccac8b0de03d9efcfac65277529daf225b /cpp/src/IcePatch2/ClientUtil.cpp
parentUpdated icon (diff)
downloadice-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-xcpp/src/IcePatch2/ClientUtil.cpp3
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;