diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-18 17:48:57 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-18 17:48:57 +0200 |
commit | 36857f6b8b29b208133e40f5111c68d5f5b9f464 (patch) | |
tree | d87f9e6559f7b50afa043a1e3cfcf2d737a4e387 /serverloop.c | |
parent | - OpenBSD CVS Sync (diff) | |
download | openssh-36857f6b8b29b208133e40f5111c68d5f5b9f464.tar.xz openssh-36857f6b8b29b208133e40f5111c68d5f5b9f464.zip |
- markus@cvs.openbsd.org 2001/07/15 16:17:08
[serverloop.c]
schedule client alive for ssh2 only, greg@cheers.bungi.com
Diffstat (limited to 'serverloop.c')
-rw-r--r-- | serverloop.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/serverloop.c b/serverloop.c index 1db1c725a..f826c6cb2 100644 --- a/serverloop.c +++ b/serverloop.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.74 2001/07/02 22:52:57 markus Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.75 2001/07/15 16:17:08 markus Exp $"); #include "xmalloc.h" #include "packet.h" @@ -183,11 +183,11 @@ wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp, * this could be randomized somewhat to make traffic * analysis more difficult, but we're not doing it yet. */ - if (max_time_milliseconds == 0 && options.client_alive_interval) { + if (compat20 && + max_time_milliseconds == 0 && options.client_alive_interval) { client_alive_scheduled = 1; max_time_milliseconds = options.client_alive_interval * 1000; - } else - client_alive_scheduled = 0; + } /* When select fails we restart from here. */ retry_select: @@ -1000,4 +1000,3 @@ server_init_dispatch(void) else server_init_dispatch_15(); } - |