Made possible to silence error message about missing pseudo drive
This commit is contained in:
parent
7833b81678
commit
a36dd06d92
@ -1 +1 @@
|
||||
#define Cdrskin_timestamP "2007.10.15.115448"
|
||||
#define Cdrskin_timestamP "2007.10.15.115728"
|
||||
|
@ -377,11 +377,13 @@ int burn_read_data(struct burn_drive *d, off_t byte_address,
|
||||
|
||||
fd = open(d->devname, O_RDONLY | O_LARGEFILE);
|
||||
if (fd == -1) {
|
||||
libdax_msgs_submit(libdax_messenger, d->global_index,
|
||||
0x00020005,
|
||||
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
||||
"Failed to open device (a pseudo-drive)",
|
||||
errno, 0);
|
||||
if (!(flag & 1))
|
||||
libdax_msgs_submit(libdax_messenger,
|
||||
d->global_index,
|
||||
0x00020005,
|
||||
LIBDAX_MSGS_SEV_SORRY, LIBDAX_MSGS_PRIO_HIGH,
|
||||
"Failed to open device (a pseudo-drive) for reading",
|
||||
errno, 0);
|
||||
ret = 0; goto ex;
|
||||
}
|
||||
if (lseek(fd, byte_address, SEEK_SET) == -1) {
|
||||
|
Loading…
Reference in New Issue
Block a user