From: Michael Vogt Date: Tue, 30 Aug 2005 00:23:07 +0000 (+0000) Subject: * fix a missing StatDone if nothing needs to be fetched X-Git-Tag: 0.7.21~334^2~9 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/cffc2ddd412bb0af8e0fe716dacb2da07fe6ddbc * fix a missing StatDone if nothing needs to be fetched --- diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index a1bd2336f..5265ef3a6 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -379,6 +379,7 @@ void pkgAcqIndexDiffs::Finish(bool allDone) DestFile = _config->FindDir("Dir::State::lists"); DestFile += URItoFileName(RealURI); Complete = true; + Status = StatDone; Dequeue(); if(Debug) std::clog << "\n\nallDone: " << DestFile << "\n" << std::endl;