diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2020-01-26 00:13:21 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2020-01-26 00:13:21 +0000 |
commit | ce4d784cc54b3c405392a7be60966de65f5a553d (patch) | |
tree | df6eb0845b3219541333b8e4e5393c53b9d8952a /usr.bin | |
parent | fc51fd80ad4ee541f782e21e48c4c6f25226b350 (diff) |
downgrade error() for missing subsequent known_hosts files to debug()
as it was intended to be; spotted by dtucker@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index cb386d4d9ed..b95c16f3e4d 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/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@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -2158,7 +2158,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; } |