summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2021-07-05 01:21:08 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2021-07-05 01:21:08 +0000
commite55c31f0e1cb26a28e1fc8893d3c3ec3581e86f1 (patch)
tree2f3c6985351cc369058e0dc71738706c17542a96 /usr.bin
parent78c5e7056c2b8f4ba4ceb110dc8fdac5b7ca1236 (diff)
Fix a couple of whitespace things. Portable already has these so this
removes two diffs between the two.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/clientloop.c4
-rw-r--r--usr.bin/ssh/sshkey.c3
2 files changed, 3 insertions, 4 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
diff --git a/usr.bin/ssh/sshkey.c b/usr.bin/ssh/sshkey.c
index a3be721f8b8..d313fa2b0c9 100644
--- a/usr.bin/ssh/sshkey.c
+++ b/usr.bin/ssh/sshkey.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshkey.c,v 1.116 2021/04/03 06:18:41 djm Exp $ */
+/* $OpenBSD: sshkey.c,v 1.117 2021/07/05 01:21:07 dtucker Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
* Copyright (c) 2008 Alexander von Gernler. All rights reserved.
@@ -1276,7 +1276,6 @@ peek_type_nid(const char *s, size_t l, int *nid)
return KEY_UNSPEC;
}
-
/* XXX this can now be made const char * */
int
sshkey_read(struct sshkey *ret, char **cpp)