From 4ab1f5f5f64505f46789c61a6e5a206f3c2ee83e Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Thu, 7 Apr 2011 15:10:55 +0200 Subject: [PATCH] Remove extraneous parentheses. --- sink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sink.c b/sink.c index 92f7b433..5d92556f 100644 --- a/sink.c +++ b/sink.c @@ -1123,9 +1123,9 @@ static int open_mda_sink(struct query *ctl, struct msgblk *msg, */ nameslen = 0; for (idp = msg->recipients; idp; idp = idp->next) - if ((idp->val.status.mark == XMIT_ACCEPT)) + if (idp->val.status.mark == XMIT_ACCEPT) nameslen += (strlen(idp->id) + 1); /* string + ' ' */ - if ((*good_addresses == 0)) + if (*good_addresses == 0) nameslen = strlen(run.postmaster); names = (char *)xmalloc(nameslen + 1); /* account for '\0' */ -- 2.43.2