diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:10 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:10 +0000 |
commit | 281daf46d178d4fb6f43e8b13b9b51736db84d74 (patch) | |
tree | 236d9fb0f8b1fc26b22406ba6eab54967d69f253 /cmdline/acqprogress.cc | |
parent | a4e87467fe5c5d12a617a43f3115c89daa54b7cf (diff) |
CD swapping support
Author: jgg
Date: 1999-07-03 03:10:35 GMT
CD swapping support
Diffstat (limited to 'cmdline/acqprogress.cc')
-rw-r--r-- | cmdline/acqprogress.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc index d6031ad0a..f16843c61 100644 --- a/cmdline/acqprogress.cc +++ b/cmdline/acqprogress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acqprogress.cc,v 1.15 1999/06/13 05:06:40 jgg Exp $ +// $Id: acqprogress.cc,v 1.16 1999/07/03 03:10:35 jgg Exp $ /* ###################################################################### Acquire Progress - Command line progress meter @@ -92,6 +92,9 @@ void AcqTextStatus::Fail(pkgAcquire::ItemDesc &Itm) if (Quiet > 1) return; + if (Itm.Owner->Status == pkgAcquire::Item::StatIdle) + return; + if (Quiet <= 0) cout << '\r' << BlankLine << '\r'; |