diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-03-05 06:08:19 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-03-05 06:08:19 +0000 |
commit | 5de86cc73681bbbf6cb15e04c8c38ad1a03243d0 (patch) | |
tree | f102074fb5162ef7e83eb3e5f11564662be17188 /compat.c | |
parent | 6a5cde0eb77b3e08a2d3dc25be37a4053d5105d9 (diff) | |
download | openssh-git-5de86cc73681bbbf6cb15e04c8c38ad1a03243d0.tar.gz |
- markus@cvs.openbsd.org 2001/02/27 11:00:11
[compat.c]
support SSH-2.0-2.1 ; from Christophe_Moret@hp.com
Diffstat (limited to 'compat.c')
-rw-r--r-- | compat.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -23,7 +23,7 @@ */ #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 # include <pcreposix.h> @@ -74,6 +74,8 @@ compat_datafellows(const char *version) { "MindTerm", 0 }, { "^2\\.1\\.0", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| 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| SSH_OLD_SESSIONID|SSH_BUG_DEBUG| SSH_BUG_PKSERVICE|SSH_BUG_X11FWD }, |