From: Lennart Poettering Date: Tue, 20 Nov 2018 14:56:55 +0000 (+0100) Subject: tmpfiles: behind → below in log msgs X-Git-Tag: v240~262^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=48d96904301154d81b32d2c58ec6c96cb3689210;p=thirdparty%2Fsystemd.git tmpfiles: behind → below in log msgs As suggested here: https://github.com/systemd/systemd/pull/10538#pullrequestreview-176710207 --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 9de9498d486..249365f3da9 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -2268,10 +2268,10 @@ static int process_item(Item *i, OperationMask operation) { r = chase_symlinks(i->path, NULL, CHASE_NO_AUTOFS, NULL); if (r == -EREMOTE) { - log_debug_errno(r, "Item '%s' is behind autofs, skipping.", i->path); + log_debug_errno(r, "Item '%s' is below autofs, skipping.", i->path); return 0; } else if (r < 0) - log_debug_errno(r, "Failed to determine whether '%s' is behind autofs, ignoring: %m", i->path); + log_debug_errno(r, "Failed to determine whether '%s' is below autofs, ignoring: %m", i->path); r = FLAGS_SET(operation, OPERATION_CREATE) ? create_item(i) : 0; /* Failure can only be tolerated for create */