diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-03 11:15:05 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-12-03 11:15:05 +0000 |
commit | e6f51a040a0e9c2d041b417438cec50358f087eb (patch) | |
tree | 832cb55e8864f25fab79aa7e6e0743774bd59dff /usr.bin/ssh/compat.c | |
parent | c066beacb2b726169179a9fb765496b319fc243e (diff) |
support f-secure/ssh.com 2.0.12; ok niels@
Diffstat (limited to 'usr.bin/ssh/compat.c')
-rw-r--r-- | usr.bin/ssh/compat.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index a9daabc7379..5266b2585d2 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.27 2000/10/31 09:31:58 markus Exp $"); +RCSID("$OpenBSD: compat.c,v 1.28 2000/12/03 11:15:03 markus Exp $"); #include "ssh.h" #include "packet.h" @@ -62,9 +62,12 @@ compat_datafellows(const char *version) { "MindTerm", 0 }, { "^2\\.1\\.0 ", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| SSH_OLD_SESSIONID }, - { "^2\\.0\\.", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| + { "^2\\.0\\.1[3-9]", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| SSH_OLD_SESSIONID| - SSH_BUG_PUBKEYAUTH|SSH_BUG_X11FWD }, + SSH_BUG_PKSERVICE|SSH_BUG_X11FWD }, + { "^2\\.0\\.", SSH_BUG_SIGBLOB|SSH_BUG_HMAC| + SSH_OLD_SESSIONID|SSH_BUG_PKAUTH| + SSH_BUG_PKSERVICE|SSH_BUG_X11FWD }, { "^2\\.[23]\\.0 ", SSH_BUG_HMAC}, { "^2\\.[2-9]\\.", 0 }, { "^2\\.4$", SSH_OLD_SESSIONID}, /* Van Dyke */ |