diff options
author | 2014-03-27 23:01:27 +0000 | |
---|---|---|
committer | 2014-03-27 23:01:27 +0000 | |
commit | bb90d0240c1ffb7afd17d7860d41b471ea47de0a (patch) | |
tree | aee3614fb6a6fa6df54c11d4cd2d31733f205007 /usr.bin/ssh/ssh-keyscan.c | |
parent | one more Xr to smtpd; (diff) | |
download | wireguard-openbsd-bb90d0240c1ffb7afd17d7860d41b471ea47de0a.tar.xz wireguard-openbsd-bb90d0240c1ffb7afd17d7860d41b471ea47de0a.zip |
disable weak proposals in sshd, but keep them in ssh; ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index 362b732ddad..61fd5bbd22c 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keyscan.c,v 1.90 2014/03/12 04:44:58 djm Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.91 2014/03/27 23:01:27 markus Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -227,6 +227,7 @@ ssh2_capable(int remote_major, int remote_minor) static Key * keygrab_ssh2(con *c) { + char *myproposal[PROPOSAL_MAX] = { KEX_CLIENT }; int j; packet_set_connection(c->c_fd, c->c_fd); |