From d1a61dfa69fe0f51feeb7d0ba752278eab367713 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 18 Dec 2020 23:15:36 +0900 Subject: [PATCH] tmpfiles: fix typo Follow-up for 94566540e3863032df3a8a89f948b94d764ca2b4. --- src/tmpfiles/tmpfiles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 2bbacf0ccf..6a1215d626 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -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, ¤t, 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)