diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-12-18 15:15:36 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-12-18 16:58:22 +0100 |
commit | d1a61dfa69fe0f51feeb7d0ba752278eab367713 (patch) | |
tree | 086f898ea4abde13f679ddde315256219086d149 /src/tmpfiles/tmpfiles.c | |
parent | Merge pull request #18019 from yuwata/hostname-drop-libudev (diff) | |
download | systemd-d1a61dfa69fe0f51feeb7d0ba752278eab367713.tar.xz systemd-d1a61dfa69fe0f51feeb7d0ba752278eab367713.zip |
tmpfiles: fix typo
Follow-up for 94566540e3863032df3a8a89f948b94d764ca2b4.
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |