aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-11-15 03:50:51 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-11-15 03:50:51 +0000
commit58d31448e21d2f355a4b5f4c18fd7a142b446b33 (patch)
treee6beafc7b9c6762d5dfa6101f86f68851699a1a3
parent1f9b0df2d1edad6660fec1dba6985f55c75218c8 (diff)
downloadfetchmail-58d31448e21d2f355a4b5f4c18fd7a142b446b33.tar.gz
fetchmail-58d31448e21d2f355a4b5f4c18fd7a142b446b33.tar.bz2
fetchmail-58d31448e21d2f355a4b5f4c18fd7a142b446b33.zip
Correct nesting.
svn path=/trunk/; revision=542
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 356a3edb..fa5b0cac 100644
--- a/driver.c
+++ b/driver.c
@@ -821,7 +821,7 @@ const struct method *proto; /* protocol method table */
{
int toolarge = msgsizes && (msgsizes[num-1] > ctl->limit);
int fetch_it = ctl->fetchall ||
- (!toolarge && (force_retrieval || !(protocol->is_old && (protocol->is_old)(sockfp,ctl,num)));
+ (!toolarge && (force_retrieval || !(protocol->is_old && (protocol->is_old)(sockfp,ctl,num))));
/* we may want to reject this message if it's old */
if (!fetch_it)