diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/IcePatch/IcePatchI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IcePatch/IcePatchI.cpp b/cpp/src/IcePatch/IcePatchI.cpp index 3cc0a81eb9d..dfa10dd77a5 100644 --- a/cpp/src/IcePatch/IcePatchI.cpp +++ b/cpp/src/IcePatch/IcePatchI.cpp @@ -115,7 +115,7 @@ IcePatch::DirectoryI::describe(const Current& current) const // 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));//->ice_compress(true)); return desc; } @@ -208,7 +208,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; } |