]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
ssh-generator: reword error message
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 17 Dec 2025 21:51:26 +0000 (22:51 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sun, 4 Jan 2026 13:07:57 +0000 (14:07 +0100)
We have two error messages with exactly the same message.
Let's change one so that it is possible to distinguish them
in logs.

src/ssh-generator/ssh-util.c

index 48cb662b71026e3ab5c38f77666195d33522a5b9..b7af0454870ede7326531b6f96e77af507a40665 100644 (file)
@@ -35,6 +35,6 @@ int vsock_get_local_cid_or_warn(unsigned *ret) {
                 return 0;
         }
         if (r < 0)
-                return log_error_errno(r, "Failed to query local AF_VSOCK CID: %m");
+                return log_error_errno(r, "Failed to query host's AF_VSOCK CID: %m");
         return 1;
 }