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.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2025-12-17 22:51:26 +01:00
parent 82dea1c925
commit b30f77cd12

View 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;
}