diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-09-17 21:09:48 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-09-17 21:09:48 +0000 |
commit | 7080eba3783cf694603b2491ee4eb14a2e9ad281 (patch) | |
tree | 26fa40ad5994989a4a08e3653e2fb5017b0ca646 | |
parent | 644551fbb63047ba5057ae0fccd69d865204adb3 (diff) |
more versions suffering the SSH_BUG_DEBUG bug;
3.0.x reported by dbutts@maddog.storability.com
-rw-r--r-- | usr.bin/ssh/compat.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index 7ac4c32a93d..7fc9db2a4cb 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: compat.c,v 1.51 2001/06/25 08:25:37 markus Exp $"); +RCSID("$OpenBSD: compat.c,v 1.52 2001/09/17 21:09:47 markus Exp $"); #include <regex.h> @@ -97,9 +97,11 @@ compat_datafellows(const char *version) SSH_BUG_PKAUTH|SSH_BUG_PKOK| SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE| SSH_BUG_DERIVEKEY }, - { "^2\\.[23]\\.0", SSH_BUG_HMAC|SSH_BUG_RSASIGMD5 }, - { "^2\\.3\\.", SSH_BUG_RSASIGMD5 }, - { "^2\\.[2-9]\\.", 0 }, + { "^2\\.[23]\\.0", SSH_BUG_HMAC|SSH_BUG_DEBUG| + SSH_BUG_RSASIGMD5 }, + { "^2\\.3\\.", SSH_BUG_DEBUG|SSH_BUG_RSASIGMD5 }, + { "^2\\.[2-9]\\.", SSH_BUG_DEBUG }, + { "^3\\.0\\.", SSH_BUG_DEBUG }, { "^2\\.4$", SSH_OLD_SESSIONID }, /* Van Dyke */ { "^3\\.0 SecureCRT", SSH_OLD_SESSIONID }, { "^1\\.7 SecureFX", SSH_OLD_SESSIONID }, |