diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-06-11 22:09:42 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-06-11 22:09:42 +0000 |
commit | 8ed98e4ac7dff335bfcc27ab53a485abd1a1fa68 (patch) | |
tree | 89941556c6fccadaabe01e365a0321c96e46bbee /cpp/src/IcePatch/ClientUtil.cpp | |
parent | Turned Ice.Current and Ice.Identity into structures. Some code tidy up as (diff) | |
download | ice-8ed98e4ac7dff335bfcc27ab53a485abd1a1fa68.tar.bz2 ice-8ed98e4ac7dff335bfcc27ab53a485abd1a1fa68.tar.xz ice-8ed98e4ac7dff335bfcc27ab53a485abd1a1fa68.zip |
default behavior of IcePatch client now calculates MD5s dynamically for
local files
Diffstat (limited to 'cpp/src/IcePatch/ClientUtil.cpp')
-rw-r--r-- | cpp/src/IcePatch/ClientUtil.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cpp/src/IcePatch/ClientUtil.cpp b/cpp/src/IcePatch/ClientUtil.cpp index 07610ea2938..3d08927196c 100644 --- a/cpp/src/IcePatch/ClientUtil.cpp +++ b/cpp/src/IcePatch/ClientUtil.cpp @@ -30,7 +30,7 @@ IcePatch::pathToName(const string& path) } } -void +ByteSeq IcePatch::getRegular(const RegularPrx& regular, ProgressCB& progressCB) { string path = identityToPath(regular->ice_getIdentity()); @@ -210,8 +210,5 @@ IcePatch::getRegular(const RegularPrx& regular, ProgressCB& progressCB) throw ex; } - // - // Create a MD5 file for the original file. - // - createMD5(path); + return calcMD5(path, false); } |