If we resort to opening a slice instead of the base device, do so with
the correct mode for our arguments.
This commit is contained in:
+1
-1
@@ -717,7 +717,7 @@ open_disk(int flag)
|
||||
return -3;
|
||||
for (p = 1; p < 5; p++) {
|
||||
asprintf(&s, "%ss%d", disk, p);
|
||||
fdw = open(s, O_RDONLY);
|
||||
fdw = open(s, rwmode);
|
||||
free(s);
|
||||
if (fdw == -1)
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user