diff options
author | 2010-04-10 00:04:30 +0000 | |
---|---|---|
committer | 2010-04-10 00:04:30 +0000 | |
commit | 7683fc2175e0fc33a5b73236b0f6c53f1f747d01 (patch) | |
tree | 2b1f14eeeebe30ce48fc3aff5606448d3f28e618 /usr.bin/ssh/sshconnect.c | |
parent | bz#1746 - suppress spurious tty warning when using -O and stdin (diff) | |
download | wireguard-openbsd-7683fc2175e0fc33a5b73236b0f6c53f1f747d01.tar.xz wireguard-openbsd-7683fc2175e0fc33a5b73236b0f6c53f1f747d01.zip |
fix terminology: we didn't find a certificate in known_hosts, we found
a CA key
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index 7bf8fbec832..d39bef1149b 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.220 2010/03/04 10:36:03 djm Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.221 2010/04/10 00:04:30 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -726,7 +726,7 @@ check_host_key(char *hostname, struct sockaddr *hostaddr, u_short port, debug("Host '%.200s' is known and matches the %s host %s.", host, type, want_cert ? "certificate" : "key"); debug("Found %s in %s:%d", - want_cert ? "certificate" : "key", host_file, host_line); + want_cert ? "CA key" : "key", host_file, host_line); if (want_cert && !check_host_cert(hostname, host_key)) goto fail; if (options.check_host_ip && ip_status == HOST_NEW) { |