diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:54 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:54 +0000 |
commit | 9e2a06ff63968286395f3426b689cf7c3914a883 (patch) | |
tree | 49b24f723dc1da9ece033dea5602649b88bcb633 /cmdline | |
parent | 5f3edc0fb8a81755a5237c0f189dd55ab9f453d9 (diff) |
no_proxy environment variable
Author: jgg
Date: 1999-10-18 03:18:40 GMT
no_proxy environment variable
Diffstat (limited to 'cmdline')
-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 556b8869b..2f7a9c4fc 100644 --- a/cmdline/acqprogress.cc +++ b/cmdline/acqprogress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acqprogress.cc,v 1.17 1999/08/04 05:37:18 jgg Exp $ +// $Id: acqprogress.cc,v 1.18 1999/10/18 03:18:40 jgg Exp $ /* ###################################################################### Acquire Progress - Command line progress meter @@ -123,7 +123,7 @@ void AcqTextStatus::Stop() return; if (Quiet <= 0) - cout << '\r' << BlankLine << '\r'; + cout << '\r' << BlankLine << '\r' << flush; if (FetchedBytes != 0 && _error->PendingError() == false) cout << "Fetched " << SizeToStr(FetchedBytes) << "B in " << |