summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2015-02-23 22:21:22 +0000
committerDamien Miller <djm@cvs.openbsd.org>2015-02-23 22:21:22 +0000
commit19b4aa4e6ebb73fe4f6941277a43f6af125e99e9 (patch)
treef8a8e582f3b21b7c93aa4e737c6bd75ff47d6a98 /usr.bin/ssh
parent51d384aade7d954fb5aefd27bd8c676dbc5adec5 (diff)
further silence spurious error message even when -v is specified
(e.g. to get visual host keys); reported by naddy@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index 2cfab1db600..8de71a8c216 100644
--- a/usr.bin/ssh/ssh-keygen.c
+++ b/usr.bin/ssh/ssh-keygen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-keygen.c,v 1.263 2015/02/23 16:55:31 djm Exp $ */
+/* $OpenBSD: ssh-keygen.c,v 1.264 2015/02/23 22:21:21 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -825,7 +825,7 @@ do_fingerprint(struct passwd *pw)
exit(1);
}
if ((r = sshkey_load_public(identity_file, &public, &comment)) != 0)
- debug("Error loading public key \"%s\": %s",
+ debug2("Error loading public key \"%s\": %s",
identity_file, ssh_err(r));
else {
fp = sshkey_fingerprint(public, fptype, rep);