diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2005-08-30 00:23:07 +0000 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2005-08-30 00:23:07 +0000 |
commit | cffc2ddd412bb0af8e0fe716dacb2da07fe6ddbc (patch) | |
tree | f234d7bbaa28d99f3bdd3fadd9ea1f266ef68929 /apt-pkg | |
parent | 002d99439f800af38ee08fb89ef9651db727f36b (diff) |
* fix a missing StatDone if nothing needs to be fetched
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/acquire-item.cc | 1 |
1 files changed, 1 insertions, 0 deletions
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; |