summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2004-01-16 13:41:22 +0000
committerMarc Laukien <marc@zeroc.com>2004-01-16 13:41:22 +0000
commit99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7 (patch)
treedecefda9573ec1767e5db75872a66b6e9d88b955 /cpp/src
parentIntermediate check-in. (diff)
downloadice-99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7.tar.bz2
ice-99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7.tar.xz
ice-99ba6d553a8f008ba0cad3090a3b3cadfcca6cd7.zip
temporary workaround
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IcePatch/IcePatchI.cpp4
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;
}