From 44792f652c7d7c9a9c748da11a64b72279c2abb1 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sun, 1 Nov 2009 13:05:18 -0500 Subject: [PATCH] -vvv should be full verbosity just like -vv. SVN-Revision: 1568 --- libarchive/test/main.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libarchive/test/main.c b/libarchive/test/main.c index 1b0a8cca6..9183cfafe 100644 --- a/libarchive/test/main.c +++ b/libarchive/test/main.c @@ -283,14 +283,11 @@ failure_start(const char *filename, int line, const char *fmt, ...) /* Determine whether to log header to console. */ switch (verbosity) { - case VERBOSITY_FULL: - log_console = 1; - break; case VERBOSITY_LIGHT_REPORT: log_console = (failed_lines[line].count < 2); break; default: - log_console = 0; + log_console = (verbosity >= VERBOSITY_FULL); } /* Log file:line header for this failure */ -- 2.47.3