diff options
author | 2020-10-07 02:22:23 +0000 | |
---|---|---|
committer | 2020-10-07 02:22:23 +0000 | |
commit | 788a6aabc322071ece9a4c88c58b96d294a2f983 (patch) | |
tree | 54a19ccbce78b05f1b3e90deeb4f211c362766b5 /usr.bin/ssh/sshconnect.h | |
parent | simply disable UpdateHostkeys when a certificate successfully (diff) | |
download | wireguard-openbsd-788a6aabc322071ece9a4c88c58b96d294a2f983.tar.xz wireguard-openbsd-788a6aabc322071ece9a4c88c58b96d294a2f983.zip |
revert kex->flags cert hostkey downgrade back to a plain key
(commitid VtF8vozGOF8DMKVg). We now do this a simpler way that
needs less plumbing.
ok markus@
Diffstat (limited to 'usr.bin/ssh/sshconnect.h')
-rw-r--r-- | usr.bin/ssh/sshconnect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.h b/usr.bin/ssh/sshconnect.h index 6d63075e963..b2fbf157915 100644 --- a/usr.bin/ssh/sshconnect.h +++ b/usr.bin/ssh/sshconnect.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.h,v 1.41 2020/10/03 08:11:28 djm Exp $ */ +/* $OpenBSD: sshconnect.h,v 1.42 2020/10/07 02:22:23 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -41,7 +41,7 @@ void ssh_kill_proxy_command(void); void ssh_login(struct ssh *, Sensitive *, const char *, struct sockaddr *, u_short, struct passwd *, int); -int verify_host_key(char *, struct sockaddr *, struct sshkey *, int *); +int verify_host_key(char *, struct sockaddr *, struct sshkey *); void get_hostfile_hostname_ipaddr(char *, struct sockaddr *, u_short, char **, char **); |