[openssh-commits] [openssh] 01/02: upstream: downgrade error() for missing subsequent known_hosts
git+noreply at mindrot.org
git+noreply at mindrot.org
Sun Jan 26 13:26:07 AEDT 2020
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit b59618246c332e251160be0f1e0e88a7d4e2b0ae
Author: djm at openbsd.org <djm at openbsd.org>
Date: Sun Jan 26 00:13:20 2020 +0000
upstream: downgrade error() for missing subsequent known_hosts
files to debug() as it was intended to be; spotted by dtucker@
OpenBSD-Commit-ID: 18cfea382cb52f2da761be524e309cc3d5354ef9
---
clientloop.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/clientloop.c b/clientloop.c
index 874e1286..0168d1b4 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clientloop.c,v 1.333 2020/01/25 00:21:08 djm Exp $ */
+/* $OpenBSD: clientloop.c,v 1.334 2020/01/26 00:13:20 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -2172,7 +2172,7 @@ client_input_hostkeys(struct ssh *ssh)
hostkeys_find, ctx, ctx->host_str, ctx->ip_str,
HKF_WANT_PARSE_KEY|HKF_WANT_MATCH)) != 0) {
if (r == SSH_ERR_SYSTEM_ERROR && errno == ENOENT) {
- error("%s: hostkeys file %s does not exist",
+ debug("%s: hostkeys file %s does not exist",
__func__, options.user_hostfiles[i]);
continue;
}
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list