diff options
author | martin@piware.de <> | 2010-06-24 21:27:27 +0200 |
---|---|---|
committer | martin@piware.de <> | 2010-06-24 21:27:27 +0200 |
commit | c4fc2fd7fa0fc63fd8cd6bc9b73492e6baf0222a (patch) | |
tree | 04161940fbd86e574ddd5de1dca4e974af77c524 /apt-pkg/deb/debsrcrecords.h | |
parent | 9d706e45650240cb7b05104211d93220dd6f614c (diff) |
Switch FileFd to not transparently gunzip, since that breaks code which expects the compressed contents to stay (such as the copy backend, or when using file:// repositories. Instead, introduce a new ReadOnlyGzip mode and use that where needed
Diffstat (limited to 'apt-pkg/deb/debsrcrecords.h')
-rw-r--r-- | apt-pkg/deb/debsrcrecords.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/debsrcrecords.h b/apt-pkg/deb/debsrcrecords.h index c39d78bae..905264daa 100644 --- a/apt-pkg/deb/debsrcrecords.h +++ b/apt-pkg/deb/debsrcrecords.h @@ -48,7 +48,7 @@ class debSrcRecordParser : public pkgSrcRecords::Parser virtual bool Files(vector<pkgSrcRecords::File> &F); debSrcRecordParser(string const &File,pkgIndexFile const *Index) - : Parser(Index), Fd(File,FileFd::ReadOnly), Tags(&Fd,102400), + : Parser(Index), Fd(File,FileFd::ReadOnlyGzip), Tags(&Fd,102400), Buffer(0), BufSize(0) {} ~debSrcRecordParser(); }; |