diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2021-07-05 01:21:08 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2021-07-05 01:21:08 +0000 |
commit | e55c31f0e1cb26a28e1fc8893d3c3ec3581e86f1 (patch) | |
tree | 2f3c6985351cc369058e0dc71738706c17542a96 /usr.bin/ssh/clientloop.c | |
parent | 78c5e7056c2b8f4ba4ceb110dc8fdac5b7ca1236 (diff) |
Fix a couple of whitespace things. Portable already has these so this
removes two diffs between the two.
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 2c97c868b67..39ecbe5c0bf 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clientloop.c,v 1.364 2021/05/26 01:47:24 djm Exp $ */ +/* $OpenBSD: clientloop.c,v 1.365 2021/07/05 01:21:07 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -564,7 +564,7 @@ client_wait_until_can_do_something(struct ssh *ssh, fatal_fr(r, "sshbuf_putf"); quit_pending = 1; } else if (options.server_alive_interval > 0 && !FD_ISSET(connection_in, - *readsetp) && monotime() >= server_alive_time) + *readsetp) && monotime() >= server_alive_time) /* * ServerAlive check is needed. We can't rely on the select * timing out since traffic on the client side such as port |