diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-10-01 18:01:14 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-10-01 18:01:14 +0200 |
commit | 47450dea0904298c8d5ea06b15ea26368da5a4ee (patch) | |
tree | 6fa5009a23601468a91d0766177427df33a320d2 /apt-pkg/acquire-item.cc | |
parent | 0b844e23f014bd3ce95e27fe5fa81138e9ae4879 (diff) |
fix leftover files from Acquire::GzipIndex
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r-- | apt-pkg/acquire-item.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index fd2ea08f8..dbc1dfbe7 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1283,7 +1283,7 @@ void pkgAcqIndex::Done(string Message, unsigned long long Size, // If we enable compressed indexes, queue for hash verification if (_config->FindB("Acquire::GzipIndexes",false)) { - DestFile = _config->FindDir("Dir::State::lists"); + DestFile = _config->FindDir("Dir::State::lists") + "partial/"; DestFile += URItoFileName(RealURI) + '.' + compExt; Decompression = true; |