Skip to content

Commit

Permalink
upstream: downgrade error() for missing subsequent known_hosts
Browse files Browse the repository at this point in the history
files to debug() as it was intended to be; spotted by dtucker@

OpenBSD-Commit-ID: 18cfea382cb52f2da761be524e309cc3d5354ef9
  • Loading branch information
djmdjm authored and daztucker committed Jan 26, 2020
1 parent 469df61 commit b596182
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clientloop.c
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
* Copyright (c) 1995 Tatu Ylonen <[email protected]>, Espoo, Finland
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit b596182

Please sign in to comment.