diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-11-12 23:30:38 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-11-15 22:43:03 +0100 |
commit | 3818d6a3a5a9bb5e23db12121066de848c95ad79 (patch) | |
tree | a9d4f4c2d601ab6ad4761e4c1d6508e915332185 /src/basic/mountpoint-util.c | |
parent | 5feeb2584fb05174842004b8742177cc487cb187 (diff) | |
download | systemd-3818d6a3a5a9bb5e23db12121066de848c95ad79.tar.gz |
mountpoint-util: sort list of read-only fs again
Diffstat (limited to 'src/basic/mountpoint-util.c')
-rw-r--r-- | src/basic/mountpoint-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/mountpoint-util.c b/src/basic/mountpoint-util.c index 9dbe34ba4d..c813a4f56f 100644 --- a/src/basic/mountpoint-util.c +++ b/src/basic/mountpoint-util.c @@ -411,8 +411,8 @@ bool fstype_is_ro(const char *fstype) { /* All Linux file systems that are necessarily read-only */ return STR_IN_SET(fstype, "DM_verity_hash", - "iso9660", "erofs", + "iso9660", "squashfs"); } |