From 516e3c359bd5549b57a8750bf4cc83812824e679 Mon Sep 17 00:00:00 2001 From: iedowse Date: Sat, 19 Jun 2004 22:41:18 +0000 Subject: Print the `99.99% done, finished soon' message only as often as the normal status messages. Previously a large number of these new messages could be spewed out towards the end of a dump. Reviewed by: imp --- sbin/dump/optr.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sbin') diff --git a/sbin/dump/optr.c b/sbin/dump/optr.c index aa2c06a..8c1f3c1 100644 --- a/sbin/dump/optr.c +++ b/sbin/dump/optr.c @@ -192,11 +192,14 @@ timeest(void) time_t tnow, tdone; int deltat, hours, mins; + (void)time(&tnow); if (blockswritten > tapesize) { setproctitle("%s: 99.99%% done, finished soon", disk); - msg("99.99%% done, finished soon\n"); + if (tnow >= tschedule) { + tschedule = tnow + 300; + msg("99.99%% done, finished soon\n"); + } } else { - (void) time(&tnow); deltat = (blockswritten == 0) ? 0 : tstart_writing - tnow + (double)(tnow - tstart_writing) / blockswritten * tapesize; tdone = tnow + deltat; -- cgit v1.1