summaryrefslogtreecommitdiff
path: root/cmdline/acqprogress.cc
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2009-03-27 13:58:14 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2009-03-27 13:58:14 +0100
commit089a4fd2d8ebdc3f8a3bf097d1a1e20d6256b91e (patch)
tree6f12b667c156355ac68d3a99698d1f67392960f5 /cmdline/acqprogress.cc
parent7df4fe4025b02b4420e7529a0489f506f7e9b55a (diff)
parent848f5c4e06b3a159b5605405aa21570257d11ece (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/acqprogress.cc')
-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)];