diff options
author | 2015-07-28 23:20:42 +0000 | |
---|---|---|
committer | 2015-07-28 23:20:42 +0000 | |
commit | 984117dfdb749224aad97e0c86ad53745d7b1f13 (patch) | |
tree | cf41e25dc4d60342d31ca738abb3c9eace54ce28 | |
parent | Convert sectors to DEV_BSIZE block values were necessary to find, (diff) | |
download | wireguard-openbsd-984117dfdb749224aad97e0c86ad53745d7b1f13.tar.xz wireguard-openbsd-984117dfdb749224aad97e0c86ad53745d7b1f13.zip |
add Cisco to the list of clients that choke on the hostkeys update
extension. Pointed out by Howard Kash
-rw-r--r-- | usr.bin/ssh/compat.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index c8589156ba6..3e6a9435491 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: compat.c,v 1.95 2015/07/13 04:57:14 dtucker Exp $ */ +/* $OpenBSD: compat.c,v 1.96 2015/07/28 23:20:42 djm Exp $ */ /* * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. * @@ -150,7 +150,8 @@ compat_datafellows(const char *version) "1.2.22*", SSH_BUG_IGNOREMSG }, { "1.3.2*", /* F-Secure */ SSH_BUG_IGNOREMSG }, - { "Cisco-1.*", SSH_BUG_DHGEX_LARGE }, + { "Cisco-1.*", SSH_BUG_DHGEX_LARGE| + SSH_BUG_HOSTKEYS }, { "*SSH Compatible Server*", /* Netscreen */ SSH_BUG_PASSWORDPAD }, { "*OSU_0*," |