diff options
author | midipix <writeonce@midipix.org> | 2024-06-09 00:23:34 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-06-09 00:41:58 +0000 |
commit | e99de36b4ab5f9f8a331b4a4401204a19c468957 (patch) | |
tree | a31f4bac44ee6fe25ffd0b7b432ab6f3873a6e7c /src/driver | |
parent | 25362d2365de0e6b24959c57f3a84e7a19b0b6a5 (diff) | |
download | tpax-e99de36b4ab5f9f8a331b4a4401204a19c468957.tar.bz2 tpax-e99de36b4ab5f9f8a331b4a4401204a19c468957.tar.xz |
driver: implemented and integrated the -v (verbose mode) cmdline option.
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/tpax_driver_ctx.c | 6 |
1 files changed, 5 insertions, 1 deletions
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; |