mirror of git://anongit.mindrot.org/openssh.git
- djm@cvs.openbsd.org 2014/04/19 05:54:59
[compat.c] missing wildcard; pointed out by naddy@
This commit is contained in:
parent
9395b28223
commit
0e6b67423b
|
@ -108,6 +108,9 @@
|
||||||
versions.
|
versions.
|
||||||
|
|
||||||
reported by Aris Adamantiadis; ok markus@
|
reported by Aris Adamantiadis; ok markus@
|
||||||
|
- djm@cvs.openbsd.org 2014/04/19 05:54:59
|
||||||
|
[compat.c]
|
||||||
|
missing wildcard; pointed out by naddy@
|
||||||
|
|
||||||
20140401
|
20140401
|
||||||
- (djm) On platforms that support it, use prctl() to prevent sftp-server
|
- (djm) On platforms that support it, use prctl() to prevent sftp-server
|
||||||
|
|
4
compat.c
4
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.
|
* Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
|
||||||
*
|
*
|
||||||
|
@ -96,7 +96,7 @@ compat_datafellows(const char *version)
|
||||||
{ "OpenSSH_4*", 0 },
|
{ "OpenSSH_4*", 0 },
|
||||||
{ "OpenSSH_5*", SSH_NEW_OPENSSH|SSH_BUG_DYNAMIC_RPORT},
|
{ "OpenSSH_5*", SSH_NEW_OPENSSH|SSH_BUG_DYNAMIC_RPORT},
|
||||||
{ "OpenSSH_6.5*,"
|
{ "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 },
|
{ "OpenSSH*", SSH_NEW_OPENSSH },
|
||||||
{ "*MindTerm*", 0 },
|
{ "*MindTerm*", 0 },
|
||||||
{ "2.1.0*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
|
{ "2.1.0*", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
|
||||||
|
|
Loading…
Reference in New Issue