Bug fix: -as mkisofs option -log-file added the log file to the image

This commit is contained in:
Thomas Schmitt 2013-09-05 08:29:30 +00:00
parent e1149d9379
commit 88672b7fd3
2 changed files with 4 additions and 1 deletions

View File

@ -2043,6 +2043,9 @@ rr_reloc_dir:;
Xorriso_relax_compliance(xorriso, "deep_paths_off:long_paths_off", 0); Xorriso_relax_compliance(xorriso, "deep_paths_off:long_paths_off", 0);
} else if(strcmp(argpt, "-log-file") == 0) { } else if(strcmp(argpt, "-log-file") == 0) {
if(i + 1 >= argc)
goto not_enough_args;
i+= 1;
/* was already handled before this loop */; /* was already handled before this loop */;
} else if(strcmp(argpt, "-gui") == 0) { } else if(strcmp(argpt, "-gui") == 0) {

View File

@ -1 +1 @@
#define Xorriso_timestamP "2013.09.05.081703" #define Xorriso_timestamP "2013.09.05.082833"