summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-09-18 05:55:10 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-09-18 05:55:10 +0000
commit3b4d42c24006f7123f68168ef1287ad8b5d395a3 (patch)
tree42a71d78d82deadd0a3166cfd15a11792ff58ee8 /compat.c
parent6d218f404f9f6e5167626851ffb73a82f7881461 (diff)
- markus@cvs.openbsd.org 2001/09/17 21:09:47
[compat.c] more versions suffering the SSH_BUG_DEBUG bug; 3.0.x reported by dbutts@maddog.storability.com
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/compat.c b/compat.c
index 77bba28a2..61a79914c 100644
--- a/compat.c
+++ b/compat.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: compat.c,v 1.51 2001/06/25 08:25:37 markus Exp $"); 26RCSID("$OpenBSD: compat.c,v 1.52 2001/09/17 21:09:47 markus Exp $");
27 27
28#ifdef HAVE_LIBPCRE 28#ifdef HAVE_LIBPCRE
29# include <pcreposix.h> 29# include <pcreposix.h>
@@ -105,9 +105,11 @@ compat_datafellows(const char *version)
105 SSH_BUG_PKAUTH|SSH_BUG_PKOK| 105 SSH_BUG_PKAUTH|SSH_BUG_PKOK|
106 SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE| 106 SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE|
107 SSH_BUG_DERIVEKEY }, 107 SSH_BUG_DERIVEKEY },
108 { "^2\\.[23]\\.0", SSH_BUG_HMAC|SSH_BUG_RSASIGMD5 }, 108 { "^2\\.[23]\\.0", SSH_BUG_HMAC|SSH_BUG_DEBUG|
109 { "^2\\.3\\.", SSH_BUG_RSASIGMD5 }, 109 SSH_BUG_RSASIGMD5 },
110 { "^2\\.[2-9]\\.", 0 }, 110 { "^2\\.3\\.", SSH_BUG_DEBUG|SSH_BUG_RSASIGMD5 },
111 { "^2\\.[2-9]\\.", SSH_BUG_DEBUG },
112 { "^3\\.0\\.", SSH_BUG_DEBUG },
111 { "^2\\.4$", SSH_OLD_SESSIONID }, /* Van Dyke */ 113 { "^2\\.4$", SSH_OLD_SESSIONID }, /* Van Dyke */
112 { "^3\\.0 SecureCRT", SSH_OLD_SESSIONID }, 114 { "^3\\.0 SecureCRT", SSH_OLD_SESSIONID },
113 { "^1\\.7 SecureFX", SSH_OLD_SESSIONID }, 115 { "^1\\.7 SecureFX", SSH_OLD_SESSIONID },