Let cdrskin take options -VV and -VVV as -V

This commit is contained in:
Thomas Schmitt 2022-04-05 15:59:50 +02:00
parent 879cb991df
commit 629a4fa44d
2 changed files with 5 additions and 3 deletions

View File

@ -3154,7 +3154,8 @@ see_cdrskin_eng_html:;
} else if(strncmp(argpt ,"textfile_to_v07t=", 17) == 0) {
o->do_not_scan= 1;
} else if(strcmp(argv[i],"-V")==0 || strcmp(argpt, "-Verbose") == 0) {
} else if(strcmp(argv[i],"-V")==0 || strcmp(argpt, "-Verbose") == 0 ||
strcmp(argv[i],"-VV")==0 || strcmp(argpt, "-VVV") == 0) {
burn_set_scsi_logging(2 | 4); /* log SCSI to stderr */
} else if(strcmp(argv[i],"-v")==0 || strcmp(argpt, "-verbose") == 0) {
@ -9406,7 +9407,8 @@ track_too_large:;
return(0);
}
} else if(strcmp(argv[i],"-V")==0 || strcmp(argpt, "-Verbose")==0) {
} else if(strcmp(argv[i],"-V") == 0 || strcmp(argpt, "-Verbose") == 0 ||
strcmp(argv[i],"-VV") == 0 || strcmp(argpt, "-VVV") == 0) {
/* is handled in Cdrpreskin_setup() */;
} else if(strcmp(argv[i],"-v")==0 || strcmp(argpt,"-verbose")==0) {
/* is handled in Cdrpreskin_setup() */;

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2021.11.24.114417"
#define Cdrskin_timestamP "2022.04.05.135930"