aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2011-04-07 15:10:55 +0200
committerMatthias Andree <matthias.andree@gmx.de>2011-04-07 15:11:04 +0200
commit4ab1f5f5f64505f46789c61a6e5a206f3c2ee83e (patch)
tree9e8900e936228ab24971ff299b124d39ad11a8bb
parentdb6386911ac3215eb4f359783316dd3e72b193e6 (diff)
downloadfetchmail-4ab1f5f5f64505f46789c61a6e5a206f3c2ee83e.tar.gz
fetchmail-4ab1f5f5f64505f46789c61a6e5a206f3c2ee83e.tar.bz2
fetchmail-4ab1f5f5f64505f46789c61a6e5a206f3c2ee83e.zip
Remove extraneous parentheses.
-rw-r--r--sink.c4
1 files 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' */