From: Michael Vogt Date: Tue, 22 Apr 2008 13:32:14 +0000 (+0200) Subject: apt-pkg/acquire-item.cc: fix breaking on unreachable networks X-Git-Tag: 0.7.24ubuntu1~72^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/7730e095a5be67ea86d012fc8c905449c0ae0b37?hp=--cc apt-pkg/acquire-item.cc: fix breaking on unreachable networks --- 7730e095a5be67ea86d012fc8c905449c0ae0b37 diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index a00b0b6d3..aabc4b159 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -846,7 +846,7 @@ void pkgAcqMetaSig::Failed(string Message,pkgAcquire::MethodConfig *Cnf) { Item::Failed(Message,Cnf); // move the sigfile back on transient network failures - if(FileExists(DestFile)) + if(FileExists(LastGoodSig)) Rename(LastGoodSig,Final); // set the status back to , Item::Failed likes to reset it