diff --git a/cdrskin/cdrskin_timestamp.h b/cdrskin/cdrskin_timestamp.h index 18d004a..b1503c2 100644 --- a/cdrskin/cdrskin_timestamp.h +++ b/cdrskin/cdrskin_timestamp.h @@ -1 +1 @@ -#define Cdrskin_timestamP "2008.02.07.232820" +#define Cdrskin_timestamP "2008.02.08.073414" diff --git a/libburn/mmc.c b/libburn/mmc.c index 1a9b623..df7baca 100644 --- a/libburn/mmc.c +++ b/libburn/mmc.c @@ -1422,6 +1422,7 @@ static int mmc_read_disc_info_al(struct burn_drive *d, int *alloc_len) disc_status = 2; /* always full and finalized */ d->erasable = 0; /* never erasable */ } + switch (disc_status) { case 0: d->toc_entries = 0; @@ -1445,6 +1446,15 @@ static int mmc_read_disc_info_al(struct burn_drive *d, int *alloc_len) break; } + /* ts A80207 : DVD +/- R DL can normally be read but not be written */ + if((d->current_profile == 0x2b || d->current_profile == 0x15) && + !d->current_is_supported_profile) { + if(d->status == BURN_DISC_APPENDABLE) + d->status = BURN_DISC_FULL; + d->erasable = 0; /* never erasable */ + d->current_is_supported_profile = 1; + } + if ((d->current_profile != 0 || d->status != BURN_DISC_UNREADY) && ! d->current_is_supported_profile) { if (!d->silent_on_scsi_error) {