diff options
author | Lennart Poettering <lennart@poettering.net> | 2022-09-16 14:53:35 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-09-16 17:20:24 +0200 |
commit | c5be1ceb08e731de7a904fda1ec89f40f48e5ab8 (patch) | |
tree | 5ef1cb67865c7ce1d64730c960c672f5ae1250d3 | |
parent | tmpfiles: drop redundant forward declarations (diff) | |
download | systemd-c5be1ceb08e731de7a904fda1ec89f40f48e5ab8.tar.xz systemd-c5be1ceb08e731de7a904fda1ec89f40f48e5ab8.zip |
tmpfiles: let's suffix path to dirs with '/' also in log messages
-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 22317fe7e2..ac6c5993e3 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -280,7 +280,7 @@ static int log_unresolvable_specifier(const char *filename, unsigned line) { notified ? LOG_DEBUG : LOG_NOTICE, filename, line, 0, "Failed to resolve specifier: %s, skipping", - arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc detected"); + arg_user ? "Required $XDG_... variable not defined" : "uninitialized /etc/ detected"); if (!notified) log_notice("All rules containing unresolvable specifiers will be skipped."); |