diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2000-06-19 00:50:12 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2000-06-19 00:50:12 +0000 |
commit | 0955a530f45285c33894b242e5ea3972187bfaa2 (patch) | |
tree | be1b6f50c8c132006c3b1106de486bac8d646819 /usr.bin/ssh/compat.c | |
parent | c6db3aea09f76d82c044f4d46747bedc65dd0ba9 (diff) |
make userauth+pubkey interop with ssh.com-2.2.0
Diffstat (limited to 'usr.bin/ssh/compat.c')
-rw-r--r-- | usr.bin/ssh/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index fa3d27d512c..d534e8d394a 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -28,7 +28,7 @@ */ #include "includes.h" -RCSID("$Id: compat.c,v 1.15 2000/06/18 03:00:27 markus Exp $"); +RCSID("$Id: compat.c,v 1.16 2000/06/19 00:50:11 markus Exp $"); #include "ssh.h" #include "packet.h" @@ -61,7 +61,7 @@ compat_datafellows(const char *version) char *version; int bugs; } check[] = { - {"2.2.0", SSH_BUG_HMAC}, + {"2.2.0", SSH_BUG_HMAC|SSH_COMPAT_SESSIONID_ENCODING}, {"2.1.0", SSH_BUG_SIGBLOB|SSH_BUG_HMAC}, {"2.0.1", SSH_BUG_SIGBLOB|SSH_BUG_HMAC|SSH_BUG_PUBKEYAUTH|SSH_BUG_X11FWD}, {NULL, 0} |