mirror of
https://github.com/morgan9e/systemd
synced 2026-04-16 01:16:10 +09:00
Always open the cdrom drive in non-blocking mode in cdrom_id
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -112,10 +112,7 @@ int main(int argc, char *argv[])
|
||||
goto exit;
|
||||
}
|
||||
|
||||
fd = open(node, O_RDONLY);
|
||||
if (fd < 0)
|
||||
if (errno == ENOMEDIUM)
|
||||
fd = open(node, O_RDONLY|O_NONBLOCK);
|
||||
fd = open(node, O_RDONLY|O_NONBLOCK);
|
||||
if (fd < 0) {
|
||||
err("unable to open '%s'", node);
|
||||
rc = 1;
|
||||
|
||||
Reference in New Issue
Block a user