chiark / gitweb /
tree-wide: there is no ENOTSUP on linux
[elogind.git] / src / tmpfiles / tmpfiles.c
index 10c5a63dbf4d7734db6121e0fa42c1b58db28af6..a0ff76dcf0196e366e224d4f0d083290083cb666 100644 (file)
@@ -753,7 +753,7 @@ static int path_set_acls(Item *item, const char *path) {
 
         if (r > 0)
                 return -r; /* already warned */
-        else if (r == -ENOTSUP) {
+        else if (r == -EOPNOTSUPP) {
                 log_debug_errno(r, "ACLs not supported by file system at %s", path);
                 return 0;
         } else if (r < 0)