diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2012-02-03 13:10:34 +0100 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2012-02-03 13:10:34 +0100 |
commit | bce778a312f88011a891e079b0a0f6d58f663479 (patch) | |
tree | 56cab3a4d7184dad31fc8269f5d92d304c0f41fe /apt-pkg/contrib/fileutl.cc | |
parent | f2ea4c45421bfe73e70b8210e327bea5018811a7 (diff) |
rework previous patch to avoid changing the inline code
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 28898fc34..529e7d655 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -890,6 +890,11 @@ bool FileFd::OpenDescriptor(int Fd, unsigned int const Mode, CompressMode Compre std::vector<APT::Configuration::Compressor> const compressors = APT::Configuration::getCompressors(); std::vector<APT::Configuration::Compressor>::const_iterator compressor = compressors.begin(); std::string name; + + // compat with the old API + if (Mode == ReadOnlyGzip && Compress == None) + Compress = Gzip; + switch (Compress) { case None: name = "."; break; |