diff options
author | 2014-04-19 05:54:59 +0000 | |
---|---|---|
committer | 2014-04-19 05:54:59 +0000 | |
commit | cfd9843007a5fee2071f258e164b4bd1a0dce62b (patch) | |
tree | 4c196798e59cc8eaabfa5c1702e392fe6087e24d | |
parent | move scsi_xs_put after checks that use fields in the xs (diff) | |
download | wireguard-openbsd-cfd9843007a5fee2071f258e164b4bd1a0dce62b.tar.xz wireguard-openbsd-cfd9843007a5fee2071f258e164b4bd1a0dce62b.zip |
missing wildcard; pointed out by naddy@
-rw-r--r-- | usr.bin/ssh/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index 5f9e363eeec..50c92c18e65 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: compat.c,v 1.83 2014/04/18 23:52:25 djm Exp $ */ +/* $OpenBSD: compat.c,v 1.84 2014/04/19 05:54:59 djm Exp $ */ /* * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. * @@ -94,7 +94,7 @@ compat_datafellows(const char *version) { "OpenSSH_4*", 0 }, { "OpenSSH_5*", SSH_NEW_OPENSSH|SSH_BUG_DYNAMIC_RPORT}, { "OpenSSH_6.5*," - "OpenSSH_6.6", SSH_NEW_OPENSSH|SSH_BUG_CURVE25519PAD}, + "OpenSSH_6.6*", SSH_NEW_OPENSSH|SSH_BUG_CURVE25519PAD}, { "OpenSSH*", SSH_NEW_OPENSSH }, { "*MindTerm*", 0 }, { "2.1.0*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| |