New -as mkisofs option --old-empty

This commit is contained in:
Thomas Schmitt 2011-01-26 21:04:15 +00:00
parent b4be60ecb3
commit b8788e5f9e
2 changed files with 6 additions and 2 deletions

View File

@ -533,7 +533,7 @@ int Xorriso_genisofs_count_args(struct XorrisO *xorriso, int argc, char **argv,
"-no-mac-files", "-chrp-boot",
"--hardlinks", "--acl", "--xattr", "--md5", "--for_backup",
"--protective-msdos-label", "--boot-catalog-hide", "--no-emul-toc",
"--emul-toc", "-disallow_dir_id_ext",
"--emul-toc", "-disallow_dir_id_ext", "--old-empty",
""
};
static char arg1_options[][41]= {
@ -773,6 +773,7 @@ int Xorriso_genisofs_help(struct XorrisO *xorriso, int flag)
" --stdio_sync on|off|number Control forced output to disk files",
" --no-emul-toc Save 64 kB size on random access output files",
" --emul-toc Multi-session history on such output files",
" --old-empty Use old style block addresses for empty files",
" -z, -transparent-compression",
" Enable transparent compression of files",
" -v, -verbose Verbose",
@ -1454,6 +1455,9 @@ not_enough_args:;
strcmp(argv[i], "--no-emul-toc")==0) {
/* was already handled in first argument scan */;
} else if(strcmp(argv[i], "--old-empty")==0) {
xorriso->do_old_empty= 1;
} else if(strcmp(argv[i], "-disallow_dir_id_ext")==0) {
/* was already handled in first argument scan */;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.01.26.184140"
#define Xorriso_timestamP "2011.01.26.210359"