diff options
author | Marc Laukien <marc@zeroc.com> | 2004-01-16 13:41:22 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-01-16 13:41:22 +0000 |
commit | 99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7 (patch) | |
tree | decefda9573ec1767e5db75872a66b6e9d88b955 /cpp | |
parent | Intermediate check-in. (diff) | |
download | ice-99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7.tar.bz2 ice-99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7.tar.xz ice-99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7.zip |
temporary workaround
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; } |