Recognizing overwritable media, blanked by cdrskin --grow_overwriteable_iso

This commit is contained in:
Thomas Schmitt 2011-07-10 11:26:20 +00:00
parent ec37bd448c
commit 61c485fc10
2 changed files with 4 additions and 2 deletions

View File

@ -564,7 +564,9 @@ int isoburn_start_emulation(struct isoburn *o, int flag)
isoburn_set_start_byte(o, size, 0);
if(!(flag & 1))
o->fabricated_disc_status= BURN_DISC_APPENDABLE;
} else if (!strncmp((char*)pvm->std_identifier, "CDXX1", 5)) {
} else if (strncmp((char*)pvm->std_identifier, "CDXX1", 5) == 0 ||
(strncmp((char*)pvm->std_identifier, "CDxx1", 5) == 0 &&
pvm->vol_desc_type[0] == 'x')) {
/* empty image */
isoburn_set_start_byte(o, o->zero_nwa * 2048, 0);

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.07.08.131032"
#define Xorriso_timestamP "2011.07.10.112539"