summaryrefslogtreecommitdiff
path: root/authfd.c
diff options
context:
space:
mode:
authorjcs@openbsd.org <jcs@openbsd.org>2023-03-09 21:06:24 +0000
committerDamien Miller <djm@mindrot.org>2023-03-10 10:40:02 +1100
commit633d3dc2a1e9e2a013d019a0576a0771c8423713 (patch)
treeb06f1bb6ad6891dcd2ede8b3ec70dfd9c4f1e8bb /authfd.c
parent733030840c4772f858de95d5940ec0c37663e8b0 (diff)
downloadopenssh-git-633d3dc2a1e9e2a013d019a0576a0771c8423713.tar.gz
upstream: modify parentheses in conditionals to make it clearer what is
being assigned and what is being checked ok djm dtucker OpenBSD-Commit-ID: 19c10baa46ae559474409f75a5cb3d0eade7a9b8
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/authfd.c b/authfd.c
index 77dc3cce..25a36366 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfd.c,v 1.132 2023/03/09 06:58:26 djm Exp $ */
+/* $OpenBSD: authfd.c,v 1.133 2023/03/09 21:06:24 jcs Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -490,8 +490,8 @@ encode_dest_constraint(struct sshbuf *m, const struct dest_constraint *dc)
if ((b = sshbuf_new()) == NULL)
return SSH_ERR_ALLOC_FAIL;
- if ((r = encode_dest_constraint_hop(b, &dc->from) != 0) ||
- (r = encode_dest_constraint_hop(b, &dc->to) != 0) ||
+ if ((r = encode_dest_constraint_hop(b, &dc->from)) != 0 ||
+ (r = encode_dest_constraint_hop(b, &dc->to)) != 0 ||
(r = sshbuf_put_string(b, NULL, 0)) != 0) /* reserved */
goto out;
if ((r = sshbuf_put_stringb(m, b)) != 0)