diff options
author | Damien Miller <djm@mindrot.org> | 2000-06-18 06:50:44 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-06-18 06:50:44 +0200 |
commit | f6d9e2218998559cb67aad55d3f4a0bf53600c41 (patch) | |
tree | 87ea430020c66c697e065c164951b3f74b730b76 /compat.c | |
parent | - (djm) Add summary of configure options to end of ./configure run (diff) | |
download | openssh-f6d9e2218998559cb67aad55d3f4a0bf53600c41.tar.xz openssh-f6d9e2218998559cb67aad55d3f4a0bf53600c41.zip |
- OpenBSD CVS updates:
- deraadt@cvs.openbsd.org 2000/06/17 09:58:46
[channels.c]
everyone says "nix it" (remove protocol 2 debugging message)
- markus@cvs.openbsd.org 2000/06/17 13:24:34
[sshconnect.c]
allow extended server banners
- markus@cvs.openbsd.org 2000/06/17 14:30:10
[sshconnect.c]
missing atomicio, typo
- jakob@cvs.openbsd.org 2000/06/17 16:52:34
[servconf.c servconf.h session.c sshd.8 sshd_config]
add support for ssh v2 subsystems. ok markus@.
- deraadt@cvs.openbsd.org 2000/06/17 18:57:48
[readconf.c servconf.c]
include = in WHITESPACE; markus ok
- markus@cvs.openbsd.org 2000/06/17 19:09:10
[auth2.c]
implement bug compatibility with ssh-2.0.13 pubkey, server side
- markus@cvs.openbsd.org 2000/06/17 21:00:28
[compat.c]
initial support for ssh.com's 2.2.0
- markus@cvs.openbsd.org 2000/06/17 21:16:09
[scp.c]
typo
- markus@cvs.openbsd.org 2000/06/17 22:05:02
[auth-rsa.c auth2.c serverloop.c session.c auth-options.c auth-options.h]
split auth-rsa option parsing into auth-options
add options support to authorized_keys2
- markus@cvs.openbsd.org 2000/06/17 22:42:54
[session.c]
typo
Diffstat (limited to 'compat.c')
-rw-r--r-- | compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -28,7 +28,7 @@ */ #include "includes.h" -RCSID("$Id: compat.c,v 1.11 2000/05/30 03:44:53 damien Exp $"); +RCSID("$Id: compat.c,v 1.12 2000/06/18 04:50:44 djm Exp $"); #include "ssh.h" #include "packet.h" @@ -61,6 +61,7 @@ compat_datafellows(const char *version) char *version; int bugs; } check[] = { + {"2.2.0", SSH_BUG_HMAC}, {"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} |