]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfiles: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 18 Dec 2020 14:15:36 +0000 (23:15 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 18 Dec 2020 15:58:22 +0000 (00:58 +0900)
Follow-up for 94566540e3863032df3a8a89f948b94d764ca2b4.

src/tmpfiles/tmpfiles.c

index 2bbacf0ccf22ce00761ffb410ffb74af9b870a26..6a1215d6263957eb85c4dc1fe90a7811011b23de 100644 (file)
@@ -1311,7 +1311,7 @@ static int fd_set_attribute(Item *item, int fd, const char *path, const struct s
         unsigned previous, current;
         r = chattr_full(NULL, procfs_fd, f, item->attribute_mask, &previous, &current, true);
         if (r == -ENOANO)
-                log_warning("Cannot set file attributes for '%s', maybe due to incompatiblity in specified attributes, "
+                log_warning("Cannot set file attributes for '%s', maybe due to incompatibility in specified attributes, "
                             "previous=0x%08x, current=0x%08x, expected=0x%08x, ignoring.",
                             path, previous, current, (previous & ~item->attribute_mask) | (f & item->attribute_mask));
         else if (r < 0)