diff options
Diffstat (limited to 'cpp/src/IcePatch/IcePatchI.cpp')
-rw-r--r-- | cpp/src/IcePatch/IcePatchI.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cpp/src/IcePatch/IcePatchI.cpp b/cpp/src/IcePatch/IcePatchI.cpp index 296c90b396b..96837f7c1a9 100644 --- a/cpp/src/IcePatch/IcePatchI.cpp +++ b/cpp/src/IcePatch/IcePatchI.cpp @@ -108,12 +108,7 @@ IcePatch::DirectoryI::describe(const Current& current) const // No mutex lock necessary. DirectoryDescPtr desc = new DirectoryDesc; desc->md5 = readMD5(current); - - // - // We want compression for directories, to compress directory - // listings on the fly. - // - desc->dir = DirectoryPrx::uncheckedCast(_adapter->createProxy(current.id));//->ice_compress(true)); + desc->dir = DirectoryPrx::uncheckedCast(_adapter->createProxy(current.id)); return desc; } @@ -244,7 +239,7 @@ IcePatch::RegularI::describe(const Current& current) const // We do not want compression for regular files, because we // download pre-compressed files. // - desc->reg = RegularPrx::uncheckedCast(_adapter->createProxy(current.id));//->ice_compress(false)); + desc->reg = RegularPrx::uncheckedCast(_adapter->createProxy(current.id)->ice_compress(false)); return desc; } |