]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
tmpfiles: behind → below in log msgs
authorLennart Poettering <lennart@poettering.net>
Tue, 20 Nov 2018 14:56:55 +0000 (15:56 +0100)
committerLennart Poettering <lennart@poettering.net>
Tue, 20 Nov 2018 14:56:55 +0000 (15:56 +0100)
As suggested here:

https://github.com/systemd/systemd/pull/10538#pullrequestreview-176710207

src/tmpfiles/tmpfiles.c

index 9de9498d48615329b7001a31db7d4eb0b7c3a4d4..249365f3da927e82d98ee7692daddf82720972dd 100644 (file)
@@ -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 */