Corrected a bug that prevented -as mkisofs option -output

This commit is contained in:
Thomas Schmitt 2011-02-22 07:36:42 +00:00
parent 4aa7c45c42
commit 15a93611c6
2 changed files with 2 additions and 2 deletions

View File

@ -1254,7 +1254,7 @@ not_enough_args:;
xorriso->padding= 0;
} else if(strcmp(argv[i], "-print-size")==0) {
do_print_size= 1;
} else if(strcmp(argv[i], "-o")==0) {
} else if(strcmp(argv[i], "-o")==0 || strcmp(argv[i], "-output") == 0) {
i++;
/* was already handled in first argument scan */;
} else if(strcmp(argv[i], "-M")==0 || strcmp(argv[i], "-dev")==0 ||

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.02.22.073504"
#define Xorriso_timestamP "2011.02.22.073641"