From 4bc8faa52695e6f4441c14b4e257791301377673 Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 22 Mar 2011 21:37:10 +1100 Subject: [PATCH] Storage time is only meaningful on compression. --- main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 89b89ce..4214bd2 100644 --- a/main.c +++ b/main.c @@ -284,7 +284,8 @@ static void show_summary(void) if (UNLIMITED) print_verbose("Using Unlimited Window size\n"); } - print_maxverbose("Storage time in seconds %lld\n", control.secs); + if (!DECOMPRESS && !TEST_ONLY) + print_maxverbose("Storage time in seconds %lld\n", control.secs); if (ENCRYPT) print_maxverbose("Encryption hash loops %lld\n", control.encloops); }