summaryrefslogtreecommitdiff
path: root/clientloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'clientloop.c')
-rw-r--r--clientloop.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/clientloop.c b/clientloop.c
index af207c070..a40019d08 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -59,7 +59,7 @@
59 */ 59 */
60 60
61#include "includes.h" 61#include "includes.h"
62RCSID("$OpenBSD: clientloop.c,v 1.107 2003/04/01 10:22:21 markus Exp $"); 62RCSID("$OpenBSD: clientloop.c,v 1.108 2003/04/02 09:48:07 markus Exp $");
63 63
64#include "ssh.h" 64#include "ssh.h"
65#include "ssh1.h" 65#include "ssh1.h"
@@ -968,9 +968,8 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id)
968 /* Do channel operations unless rekeying in progress. */ 968 /* Do channel operations unless rekeying in progress. */
969 if (!rekeying) { 969 if (!rekeying) {
970 channel_after_select(readset, writeset); 970 channel_after_select(readset, writeset);
971 971 if (need_rekeying || packet_need_rekeying()) {
972 if (need_rekeying) { 972 debug("need rekeying");
973 debug("user requests rekeying");
974 xxx_kex->done = 0; 973 xxx_kex->done = 0;
975 kex_send_kexinit(xxx_kex); 974 kex_send_kexinit(xxx_kex);
976 need_rekeying = 0; 975 need_rekeying = 0;