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 /cmdline/acqprogress.cc | |
parent | a9e5851b62cde2945fe3af44438b202c04c6703f (diff) |
Http download fixes
Author: jgg
Date: 1999-02-27 22:29:11 GMT
Http download fixes
Diffstat (limited to 'cmdline/acqprogress.cc')
-rw-r--r-- | cmdline/acqprogress.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc index 2b4d295b4..190dc5e81 100644 --- a/cmdline/acqprogress.cc +++ b/cmdline/acqprogress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acqprogress.cc,v 1.9 1999/02/01 08:11:57 jgg Exp $ +// $Id: acqprogress.cc,v 1.10 1999/02/27 22:29:11 jgg Exp $ /* ###################################################################### Acquire Progress - Command line progress meter @@ -93,7 +93,7 @@ void AcqTextStatus::Fail(pkgAcquire::ItemDesc &Itm) if (Quiet <= 0) cout << '\r' << BlankLine << '\r'; - if (Itm.Owner->Status == pkgAcquire::Item::StatIdle) + if (Itm.Owner->Status == pkgAcquire::Item::StatDone) { cout << "Ign " << Itm.Description << endl; } |