diff options
author | djm <djm> | 2001-02-19 10:51:08 +0000 |
---|---|---|
committer | djm <djm> | 2001-02-19 10:51:08 +0000 |
commit | 59a9d90e8bdff844ec5f449a29c895b276800dc0 (patch) | |
tree | 5910c54948b296262b2d13509925446e307bf964 /dispatch.c | |
parent | 69a466891ff4879625ef82aa18babdb1b9981f77 (diff) | |
download | openssh-59a9d90e8bdff844ec5f449a29c895b276800dc0.tar.gz |
- OpenBSD CVS Sync:
- reinhard@cvs.openbsd.org 2001/02/17 08:24:40
[sftp.1]
typo
- deraadt@cvs.openbsd.org 2001/02/17 16:28:58
[ssh.c]
cleanup -V output; noted by millert
- deraadt@cvs.openbsd.org 2001/02/17 16:48:48
[sshd.8]
it's the OpenSSH one
- markus@cvs.openbsd.org 2001/02/18 11:33:54
[dispatch.c]
typo, SSH2_MSG_KEXINIT, from aspa@kronodoc.fi
- markus@cvs.openbsd.org 2001/02/19 02:53:32
[compat.c compat.h serverloop.c]
ssh-1.2.{18-22} has broken handling of ignore messages; report from
itojun@
- markus@cvs.openbsd.org 2001/02/19 03:35:23
[version.h]
OpenSSH_2.5.1 adds bug compat with 1.2.{18-22}
- deraadt@cvs.openbsd.org 2001/02/19 03:36:25
[scp.c]
np is changed by recursion; vinschen@redhat.com
Diffstat (limited to 'dispatch.c')
-rw-r--r-- | dispatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: dispatch.c,v 1.9 2001/02/04 15:32:23 stevesk Exp $"); +RCSID("$OpenBSD: dispatch.c,v 1.10 2001/02/18 18:33:53 markus Exp $"); #include "ssh1.h" #include "ssh2.h" @@ -40,7 +40,7 @@ void dispatch_protocol_error(int type, int plen, void *ctxt) { error("Hm, dispatch protocol error: type %d plen %d", type, plen); - if (compat20 && type == SSH2_MSG_KEXDH_INIT) + if (compat20 && type == SSH2_MSG_KEXINIT) fatal("dispatch_protocol_error: rekeying is not supported"); } void |