-as mkisofs --acl and --xattr was not properly recognized

This commit is contained in:
Thomas Schmitt 2009-02-14 13:30:27 +00:00
parent 333a7d95bb
commit ef8333effe
2 changed files with 5 additions and 1 deletions

View File

@ -9940,6 +9940,10 @@ not_enough_args:;
} else if(strcmp(argv[i], "-output-charset")==0) {
i++;
/* was already handled in first argument scan */;
} else if(strcmp(argv[i], "--acl")==0) {
/* was already handled in first argument scan */;
} else if(strcmp(argv[i], "--xattr")==0) {
/* was already handled in first argument scan */;
} else if(argv[i][0]=='-' && argv[i][1]!=0) {
sprintf(xorriso->info_text, "-as %s: Unknown option %s",
whom, Text_shellsafe(argv[i], sfe, 0));

View File

@ -1 +1 @@
#define Xorriso_timestamP "2009.02.13.202539"
#define Xorriso_timestamP "2009.02.14.133013"