diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-04-05 01:46:07 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-04-05 01:46:07 +0200 |
commit | be2cc43c3ad65dc7af5bdd350eccecefa05c80ff (patch) | |
tree | 87743bbb2501bd579088303769f73c4f79fd0ad7 /sshd.c | |
parent | - markus@cvs.openbsd.org 2001/04/04 15:50:55 (diff) | |
download | openssh-be2cc43c3ad65dc7af5bdd350eccecefa05c80ff.tar.xz openssh-be2cc43c3ad65dc7af5bdd350eccecefa05c80ff.zip |
- markus@cvs.openbsd.org 2001/04/04 20:25:38
[channels.c channels.h clientloop.c kex.c kex.h serverloop.c
sshconnect2.c sshd.c]
more robust rekeying
don't send channel data after rekeying is started.
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.189 2001/04/04 14:34:58 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.190 2001/04/04 20:25:38 markus Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -1437,7 +1437,7 @@ do_ssh2_kex(void) xxx_kex = kex; - dispatch_run(DISPATCH_BLOCK, &kex->newkeys, kex); + dispatch_run(DISPATCH_BLOCK, &kex->done, kex); session_id2 = kex->session_id; session_id2_len = kex->session_id_len; |