New -as mkisofs options -hide, -hide-joliet, -hide-list, -hide-joliet-list

This commit is contained in:
2010-06-23 13:43:40 +00:00
parent bf24ba81c5
commit bd82bf66e3
14 changed files with 394 additions and 120 deletions

View File

@ -13,6 +13,8 @@
- ExclusionS which manages the list of excluded file paths and
leaf patterns.
Because of its structural identity it is also used for disk address
oriented hiding at insert time as of mkisofs.
- Xorriso_lsT which provides a generic double-linked list.
@ -772,7 +774,7 @@ int Exclusions_match(struct ExclusionS *o, char *abs_path, int flag)
/* determine leafname */
was_non_slash= 0;
for(leaf_pt= abs_path+strlen(abs_path); leaf_pt>abs_path; leaf_pt--) {
for(leaf_pt= abs_path+strlen(abs_path); leaf_pt >= abs_path; leaf_pt--) {
if(*leaf_pt=='/') {
if(was_non_slash) {
leaf_pt++;