diff options
author | 2014-04-20 02:49:32 +0000 | |
---|---|---|
committer | 2014-04-20 02:49:32 +0000 | |
commit | abe27df7a1a3b4fa96becbdfda43ddb4a8de29e2 (patch) | |
tree | 97036116ed76882998eeca75b2e111b4d5c72fce | |
parent | use get/put_u32 to load values rather than *((UINT32 *)p) that breaks on (diff) | |
download | wireguard-openbsd-abe27df7a1a3b4fa96becbdfda43ddb4a8de29e2.tar.xz wireguard-openbsd-abe27df7a1a3b4fa96becbdfda43ddb4a8de29e2.zip |
add a canonical 6.6 + curve25519 bignum fix fake version that I can
recommend people use ahead of the openssh-6.7 release
-rw-r--r-- | usr.bin/ssh/compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index 50c92c18e65..543ea04eb32 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: compat.c,v 1.84 2014/04/19 05:54:59 djm Exp $ */ +/* $OpenBSD: compat.c,v 1.85 2014/04/20 02:49:32 djm Exp $ */ /* * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. * @@ -93,6 +93,7 @@ compat_datafellows(const char *version) { "Sun_SSH_1.0*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF}, { "OpenSSH_4*", 0 }, { "OpenSSH_5*", SSH_NEW_OPENSSH|SSH_BUG_DYNAMIC_RPORT}, + { "OpenSSH_6.6.1*", SSH_NEW_OPENSSH}, { "OpenSSH_6.5*," "OpenSSH_6.6*", SSH_NEW_OPENSSH|SSH_BUG_CURVE25519PAD}, { "OpenSSH*", SSH_NEW_OPENSSH }, |