summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-sk-client.c
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2021-04-03 06:18:40 +0000
committerdjm <djm@openbsd.org>2021-04-03 06:18:40 +0000
commit74cb32ae89ef3aab8756491031877d2240175d36 (patch)
tree0dd4362e98276912a50f8dd6c111b94669d64201 /usr.bin/ssh/ssh-sk-client.c
parentwhitespace (tab after space) (diff)
downloadwireguard-openbsd-74cb32ae89ef3aab8756491031877d2240175d36.tar.xz
wireguard-openbsd-74cb32ae89ef3aab8756491031877d2240175d36.zip
highly polished whitespace, mostly fixing spaces-for-tab and bad
indentation on continuation lines. Prompted by GHPR#185
Diffstat (limited to 'usr.bin/ssh/ssh-sk-client.c')
-rw-r--r--usr.bin/ssh/ssh-sk-client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-sk-client.c b/usr.bin/ssh/ssh-sk-client.c
index d57e0efa71a..d928bda88f6 100644
--- a/usr.bin/ssh/ssh-sk-client.c
+++ b/usr.bin/ssh/ssh-sk-client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-sk-client.c,v 1.8 2020/10/18 11:32:02 djm Exp $ */
+/* $OpenBSD: ssh-sk-client.c,v 1.9 2021/04/03 06:18:41 djm Exp $ */
/*
* Copyright (c) 2019 Google LLC
*
@@ -155,9 +155,9 @@ client_converse(struct sshbuf *msg, struct sshbuf **respp, u_int type)
/* Request preamble: type, log_on_stderr, log_level */
ll = log_level_get();
if ((r = sshbuf_put_u32(req, type)) != 0 ||
- (r = sshbuf_put_u8(req, log_is_on_stderr() != 0)) != 0 ||
- (r = sshbuf_put_u32(req, ll < 0 ? 0 : ll)) != 0 ||
- (r = sshbuf_putb(req, msg)) != 0) {
+ (r = sshbuf_put_u8(req, log_is_on_stderr() != 0)) != 0 ||
+ (r = sshbuf_put_u32(req, ll < 0 ? 0 : ll)) != 0 ||
+ (r = sshbuf_putb(req, msg)) != 0) {
error_fr(r, "compose");
goto out;
}