From 885c6b327f7f0bb7821871b4dbc4d0ef8db362ec Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 12 Mar 2011 11:55:15 +1100 Subject: [PATCH] Add storage time display if it exists in maxverbose info. --- lrzip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lrzip.c b/lrzip.c index bad2e3e..3434585 100644 --- a/lrzip.c +++ b/lrzip.c @@ -509,6 +509,9 @@ void get_fileinfo(rzip_control *control) cratio = (long double)expected_size / (long double)infile_size; print_output("%s:\nlrzip version: %d.%d file\n", infilecopy, control->major_version, control->minor_version); + if (control->secs) + print_maxverbose("Storage time seconds: %lld microseconds: %lld\n", control->secs, control->usecs); + print_output("Compression: "); if (ctype == CTYPE_NONE) print_output("rzip alone\n");