Bug fix: -hide hfsplus and -as mkisofs -hide-hfsplus had no effect. Thanks to Davy Ho.
This commit is contained in:
parent
399d3411e9
commit
68742cf165
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
|
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
|
||||||
|
|
||||||
Copyright 2007-2012 Thomas Schmitt, <scdbackup@gmx.net>
|
Copyright 2007-2013 Thomas Schmitt, <scdbackup@gmx.net>
|
||||||
|
|
||||||
Provided under GPL version 2 or later.
|
Provided under GPL version 2 or later.
|
||||||
|
|
||||||
@ -166,6 +166,7 @@ ex:;
|
|||||||
bit3= cut_out_node: offset and size are valid
|
bit3= cut_out_node: offset and size are valid
|
||||||
bit8= hide in iso_rr
|
bit8= hide in iso_rr
|
||||||
bit9= hide in joliet
|
bit9= hide in joliet
|
||||||
|
bit10= hide in hfsplus
|
||||||
*/
|
*/
|
||||||
int Xorriso_tree_graft_node(struct XorrisO *xorriso, IsoImage *volume,
|
int Xorriso_tree_graft_node(struct XorrisO *xorriso, IsoImage *volume,
|
||||||
IsoDir *dir, char *disk_path, char *img_name,
|
IsoDir *dir, char *disk_path, char *img_name,
|
||||||
@ -218,8 +219,8 @@ int Xorriso_tree_graft_node(struct XorrisO *xorriso, IsoImage *volume,
|
|||||||
goto ex;
|
goto ex;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(flag & (256 | 512)) {
|
if(flag & (256 | 512 | 1024)) {
|
||||||
ret= Xorriso_set_hidden(xorriso, (void *) *node, "", (flag >> 8) & 3, 0);
|
ret= Xorriso_set_hidden(xorriso, (void *) *node, "", (flag >> 8) & 7, 0);
|
||||||
if(ret <= 0)
|
if(ret <= 0)
|
||||||
goto ex;
|
goto ex;
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2013.02.26.103233"
|
#define Xorriso_timestamP "2013.03.06.164347"
|
||||||
|
Loading…
Reference in New Issue
Block a user