chiark / gitweb /
tree-wide: there is no ENOTSUP on linux
[elogind.git] / src / shared / selinux-util.c
index 82c6924e36a85345f48a156f2b21fe3d83b12818..a8d5fc4f3e8f372c3611dbd9caed137c3663b2a8 100644 (file)
@@ -145,7 +145,7 @@ int mac_selinux_fix(const char *path, bool ignore_enoent, bool ignore_erofs) {
                         r = lsetfilecon(path, fcon);
 
                         /* If the FS doesn't support labels, then exit without warning */
-                        if (r < 0 && errno == ENOTSUP)
+                        if (r < 0 && errno == EOPNOTSUPP)
                                 return 0;
                 }
         }