summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2009-03-27 22:45:07 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2009-03-27 22:45:07 +0100
commit8a9e5ffdb6d0f1744f56bcb6522b134cfdae4a19 (patch)
tree44fda9796e9b33bf7aab52afa271c8a930001f70 /cmdline
parente2074725f98134e0ae7cc28928aea0dca8dca1b5 (diff)
* cmdline/acqprogress.cc:
- Call pkgAcquireStatus::Pulse even if quiet, so that we still get dlstatus messages on the status-fd (LP: #290234).
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/acqprogress.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc
index a5fee1db5..b3ded4142 100644
--- a/cmdline/acqprogress.cc
+++ b/cmdline/acqprogress.cc
@@ -145,11 +145,11 @@ void AcqTextStatus::Stop()
bandwidth and ETA indicator. */
bool AcqTextStatus::Pulse(pkgAcquire *Owner)
{
+ pkgAcquireStatus::Pulse(Owner);
+
if (Quiet > 0)
return true;
- pkgAcquireStatus::Pulse(Owner);
-
enum {Long = 0,Medium,Short} Mode = Long;
char Buffer[sizeof(BlankLine)];