Made read_capacity error message of burn_read_data() depending on flag bit1

This commit is contained in:
Thomas Schmitt 2009-10-09 20:03:06 +00:00
parent 22905f7349
commit ca97df9798
2 changed files with 11 additions and 9 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2009.10.09.123840"
#define Cdrskin_timestamP "2009.10.09.200411"

View File

@ -372,14 +372,16 @@ int burn_read_data(struct burn_drive *d, off_t byte_address,
}
if (d->media_read_capacity != 0x7fffffff && byte_address >=
((off_t) d->media_read_capacity + (off_t) 1) * (off_t) 2048) {
sprintf(msg,
"Read start address %ds larger than number of readable blocks %d",
(int) (byte_address / 2048 + !!(byte_address % 2048)),
d->media_read_capacity);
libdax_msgs_submit(libdax_messenger, d->global_index,
0x00020172,
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
msg, 0, 0);
if (!(flag & 2)) {
sprintf(msg,
"Read start address %ds larger than number of readable blocks %d",
(int) (byte_address / 2048 + !!(byte_address % 2048)),
d->media_read_capacity);
libdax_msgs_submit(libdax_messenger, d->global_index,
0x00020172,
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
msg, 0, 0);
}
return 0;
}