From e99de36b4ab5f9f8a331b4a4401204a19c468957 Mon Sep 17 00:00:00 2001
From: midipix <writeonce@midipix.org>
Date: Sun, 9 Jun 2024 00:23:34 +0000
Subject: driver: implemented and integrated the -v (verbose mode) cmdline
 option.

---
 src/driver/tpax_driver_ctx.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'src/driver')

diff --git a/src/driver/tpax_driver_ctx.c b/src/driver/tpax_driver_ctx.c
index e9425f6..d2fec77 100644
--- a/src/driver/tpax_driver_ctx.c
+++ b/src/driver/tpax_driver_ctx.c
@@ -88,7 +88,7 @@ static int tpax_driver_usage(
 		"Synopsis:\n"
 		"       %s [-d] [-f archive]\n"
 		"       %s -r [-d] [-f archive]\n"
-		"       %s -w [−x format] [-b blocksize] [-dt] [-H|-L] [-f archive]\n"
+		"       %s -w [−x format] [-b blocksize] [-dtv] [-H|-L] [-f archive]\n"
 		"       %s -r -w [-d]\n\n"
 		"Options:\n",
 		program,program,program,program,program);
@@ -457,6 +457,10 @@ int tpax_lib_get_driver_ctx(
 					cctx.drvflags |= TPAX_DRIVER_VERSION;
 					break;
 
+				case TAG_VERBOSE:
+					cctx.drvflags |= TPAX_DRIVER_VERBOSE;
+					break;
+
 				case TAG_LIST:
 					cctx.drvflags |= TPAX_DRIVER_EXEC_MODE_LIST;
 					break;
-- 
cgit v1.2.3