From 8508b1df3743c016f3f3aa82d63672378a113cac Mon Sep 17 00:00:00 2001 From: Arch Librarian Date: Mon, 20 Sep 2004 16:54:30 +0000 Subject: Fixed strange seg on sparc Author: jgg Date: 1999-08-04 05:37:18 GMT Fixed strange seg on sparc --- cmdline/acqprogress.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cmdline/acqprogress.cc') diff --git a/cmdline/acqprogress.cc b/cmdline/acqprogress.cc index f16843c61..556b8869b 100644 --- a/cmdline/acqprogress.cc +++ b/cmdline/acqprogress.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: acqprogress.cc,v 1.16 1999/07/03 03:10:35 jgg Exp $ +// $Id: acqprogress.cc,v 1.17 1999/08/04 05:37:18 jgg Exp $ /* ###################################################################### Acquire Progress - Command line progress meter @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -124,7 +125,7 @@ void AcqTextStatus::Stop() if (Quiet <= 0) cout << '\r' << BlankLine << '\r'; - if (FetchedBytes != 0) + if (FetchedBytes != 0 && _error->PendingError() == false) cout << "Fetched " << SizeToStr(FetchedBytes) << "B in " << TimeToStr(ElapsedTime) << " (" << SizeToStr(CurrentCPS) << "B/s)" << endl; -- cgit v1.2.3