mirror of
https://github.com/systemd/systemd.git
synced 2025-01-11 09:18:07 +03:00
blockdev-util: actually specify an access mode on open()
Linux is pretty lenient here, but we should specify the access mode.
This commit is contained in:
parent
49bd547b38
commit
86b8610794
@ -68,7 +68,7 @@ int get_block_device(const char *path, dev_t *ret) {
|
||||
/* Gets the block device directly backing a file system. If the block device is encrypted, returns
|
||||
* the device mapper block device. */
|
||||
|
||||
fd = open(path, O_NOFOLLOW|O_CLOEXEC);
|
||||
fd = open(path, O_RDONLY|O_NOFOLLOW|O_CLOEXEC);
|
||||
if (fd < 0)
|
||||
return -errno;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user