New -hardlinks mode "lsl_count" / "no_lsl_count"

This commit is contained in:
2013-05-06 16:17:42 +00:00
parent 5c784fc2ea
commit 56280922a2
6 changed files with 12 additions and 4 deletions

View File

@ -1463,6 +1463,10 @@ int Xorriso_option_hardlinks(struct XorrisO *xorriso, char *mode, int flag)
xorriso->ino_behavior&= ~16;
} else if(strcmp(what, "cheap_sorted_extract") == 0) {
xorriso->ino_behavior|= 16;
} else if(strcmp(what, "lsl_count") == 0) {
xorriso->ino_behavior&= ~32;
} else if(strcmp(what, "no_lsl_count") == 0) {
xorriso->ino_behavior|= 32;
} else {
sprintf(xorriso->info_text, "-hardlinks: unknown mode '%s' in '%s'",
what, mode);