diff options
author | Michael Vogt <mvo@debian.org> | 2004-12-23 10:02:47 +0000 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2004-12-23 10:02:47 +0000 |
commit | 5f0ccad882f7d811e4bea2a7b269f32be2fb1bd9 (patch) | |
tree | a2929c603dbb61ba77ddb055c32e520f5f53db9a /apt-pkg | |
parent | 4a242c5b86679bde52bc42f1efb89a7ca8deb280 (diff) |
* if a sign-file download fails, delete the the partial download in "partial/" also
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire-item.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index f40c6a50d..fcd655f2a 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -392,6 +392,9 @@ void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf) // mistakenly trusted string Final = _config->FindDir("Dir::State::lists") + URItoFileName(RealURI); unlink(Final.c_str()); + Final = _config->FindDir("Dir::State::lists") + "partial/"+ URItoFileName(RealURI); + unlink(Final.c_str()); + // queue a pkgAcqMetaIndex with no sigfile new pkgAcqMetaIndex(Owner, MetaIndexURI, MetaIndexURIDesc, MetaIndexShortDesc, |