diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:57 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:52:57 +0000 |
commit | 2b154e536a0df3afb318ddcf9b7daf9337de3c23 (patch) | |
tree | 40d2dcee41e246a3d281d289cc5c2615f897a388 /apt-pkg/acquire-item.cc | |
parent | a9e5851b62cde2945fe3af44438b202c04c6703f (diff) |
Http download fixes
Author: jgg
Date: 1999-02-27 22:29:11 GMT
Http download fixes
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r-- | apt-pkg/acquire-item.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 37ce9bb2d..7e4ea5043 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acquire-item.cc,v 1.24 1999/02/19 07:56:06 jgg Exp $ +// $Id: acquire-item.cc,v 1.25 1999/02/27 22:29:11 jgg Exp $ /* ###################################################################### Acquire Item - Item to acquire @@ -339,7 +339,9 @@ void pkgAcqIndexRel::Failed(string Message,pkgAcquire::MethodConfig *Cnf) if (Cnf->LocalOnly == true || StringToBool(LookupTag(Message,"Transient-Failure"),false) == false) { - Status = StatIdle; + // Ignore this + Status = StatDone; + Complete = false; Dequeue(); return; } |