From ef8333effed3f0b99e80537a610a3ad477ae60ee Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 14 Feb 2009 13:30:27 +0000 Subject: [PATCH] -as mkisofs --acl and --xattr was not properly recognized --- xorriso/xorriso.c | 4 ++++ xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/xorriso/xorriso.c b/xorriso/xorriso.c index 895cbd6c..a2abfd4a 100644 --- a/xorriso/xorriso.c +++ b/xorriso/xorriso.c @@ -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)); diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index dafb8691..27a5cb2a 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2009.02.13.202539" +#define Xorriso_timestamP "2009.02.14.133013"