From: Zbigniew Jędrzejewski-Szmek Date: Wed, 17 Dec 2025 21:51:26 +0000 (+0100) Subject: ssh-generator: reword error message X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b30f77cd125db1cca0eca95ba2d6dcbc5fffe45d;p=thirdparty%2Fsystemd.git ssh-generator: reword error message We have two error messages with exactly the same message. Let's change one so that it is possible to distinguish them in logs. --- diff --git a/src/ssh-generator/ssh-util.c b/src/ssh-generator/ssh-util.c index 48cb662b710..b7af0454870 100644 --- a/src/ssh-generator/ssh-util.c +++ b/src/ssh-generator/ssh-util.c @@ -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; }