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 >= if (d->media_read_capacity != 0x7fffffff && byte_address >=
((off_t) d->media_read_capacity + (off_t) 1) * (off_t) 2048) { ((off_t) d->media_read_capacity + (off_t) 1) * (off_t) 2048) {
sprintf(msg, if (!(flag & 2)) {
"Read start address %ds larger than number of readable blocks %d", sprintf(msg,
(int) (byte_address / 2048 + !!(byte_address % 2048)), "Read start address %ds larger than number of readable blocks %d",
d->media_read_capacity); (int) (byte_address / 2048 + !!(byte_address % 2048)),
libdax_msgs_submit(libdax_messenger, d->global_index, d->media_read_capacity);
0x00020172, libdax_msgs_submit(libdax_messenger, d->global_index,
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH, 0x00020172,
msg, 0, 0); LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
msg, 0, 0);
}
return 0; return 0;
} }