summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--serverloop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/serverloop.c b/serverloop.c
index 4b8d5ba68..5cc3fc099 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: serverloop.c,v 1.194 2017/08/11 03:58:36 dtucker Exp $ */ 1/* $OpenBSD: serverloop.c,v 1.195 2017/08/11 04:16:35 dtucker Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -277,7 +277,7 @@ wait_until_can_do_something(int connection_in, int connection_out,
277 } else if (FD_ISSET(connection_in, *readsetp)) { 277 } else if (FD_ISSET(connection_in, *readsetp)) {
278 last_client_time = now; 278 last_client_time = now;
279 } else if (last_client_time != 0 && last_client_time + 279 } else if (last_client_time != 0 && last_client_time +
280 options.client_alive_interval < now) { 280 options.client_alive_interval <= now) {
281 client_alive_check(); 281 client_alive_check();
282 last_client_time = now; 282 last_client_time = now;
283 } 283 }