- markus@cvs.openbsd.org 2001/02/27 11:00:11
[compat.c] support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
This commit is contained in:
parent
6a5cde0eb7
commit
5de86cc736
|
@ -55,6 +55,9 @@
|
||||||
- markus@cvs.openbsd.org 2001/02/27 10:35:27
|
- markus@cvs.openbsd.org 2001/02/27 10:35:27
|
||||||
[packet.c]
|
[packet.c]
|
||||||
fix random padding
|
fix random padding
|
||||||
|
- markus@cvs.openbsd.org 2001/02/27 11:00:11
|
||||||
|
[compat.c]
|
||||||
|
support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
|
||||||
|
|
||||||
20010304
|
20010304
|
||||||
- (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
|
- (bal) Remove make-ssh-known-hosts.1 since it's no longer valid.
|
||||||
|
@ -4247,4 +4250,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.867 2001/03/05 06:07:00 mouring Exp $
|
$Id: ChangeLog,v 1.868 2001/03/05 06:08:19 mouring Exp $
|
||||||
|
|
4
compat.c
4
compat.c
|
@ -23,7 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: compat.c,v 1.35 2001/02/19 09:53:31 markus Exp $");
|
RCSID("$OpenBSD: compat.c,v 1.36 2001/02/27 11:00:11 markus Exp $");
|
||||||
|
|
||||||
#ifdef HAVE_LIBPCRE
|
#ifdef HAVE_LIBPCRE
|
||||||
# include <pcreposix.h>
|
# include <pcreposix.h>
|
||||||
|
@ -74,6 +74,8 @@ compat_datafellows(const char *version)
|
||||||
{ "MindTerm", 0 },
|
{ "MindTerm", 0 },
|
||||||
{ "^2\\.1\\.0", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
|
{ "^2\\.1\\.0", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
|
||||||
SSH_OLD_SESSIONID|SSH_BUG_DEBUG },
|
SSH_OLD_SESSIONID|SSH_BUG_DEBUG },
|
||||||
|
{ "^2\\.1 ", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
|
||||||
|
SSH_OLD_SESSIONID|SSH_BUG_DEBUG },
|
||||||
{ "^2\\.0\\.1[3-9]", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
|
{ "^2\\.0\\.1[3-9]", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|
|
||||||
SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
|
SSH_OLD_SESSIONID|SSH_BUG_DEBUG|
|
||||||
SSH_BUG_PKSERVICE|SSH_BUG_X11FWD },
|
SSH_BUG_PKSERVICE|SSH_BUG_X11FWD },
|
||||||
|
|
Loading…
Reference in New Issue