diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-15 03:50:51 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-15 03:50:51 +0000 |
commit | 58d31448e21d2f355a4b5f4c18fd7a142b446b33 (patch) | |
tree | e6beafc7b9c6762d5dfa6101f86f68851699a1a3 | |
parent | 1f9b0df2d1edad6660fec1dba6985f55c75218c8 (diff) | |
download | fetchmail-58d31448e21d2f355a4b5f4c18fd7a142b446b33.tar.gz fetchmail-58d31448e21d2f355a4b5f4c18fd7a142b446b33.tar.bz2 fetchmail-58d31448e21d2f355a4b5f4c18fd7a142b446b33.zip |
Correct nesting.
svn path=/trunk/; revision=542
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |