]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mountpoint-util: sort list of read-only fs again
authorLennart Poettering <lennart@poettering.net>
Fri, 12 Nov 2021 22:30:38 +0000 (23:30 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 15 Nov 2021 21:43:03 +0000 (22:43 +0100)
src/basic/mountpoint-util.c

index 9dbe34ba4d62b458d2154a2de41a37e40ad2b59f..c813a4f56fe0db9c1852a3c92c40b36a031746f6 100644 (file)
@@ -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");
 }