chiark / gitweb /
Always open the cdrom drive in non-blocking mode in cdrom_id
[elogind.git] / extras / cdrom_id / cdrom_id.c
index 3d627811867b3f848831f6ee324838a2336eaf88..c561112d3063f72d697e2aa2d8d7415b7a959a50 100644 (file)
@@ -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;