aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-08 16:30:21 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-08 16:30:21 +0000
commitcca409b5ce0ad4b08fa36e80feb77aa8727c08a1 (patch)
tree35f78b1a3efdef5f81cca80f5f672e9aa4375728 /driver.c
parentc3bb716979d671c1564070806c33ea3f0d66f698 (diff)
downloadfetchmail-cca409b5ce0ad4b08fa36e80feb77aa8727c08a1.tar.gz
fetchmail-cca409b5ce0ad4b08fa36e80feb77aa8727c08a1.tar.bz2
fetchmail-cca409b5ce0ad4b08fa36e80feb77aa8727c08a1.zip
Fix the limit/repoll bug.
svn path=/trunk/; revision=1490
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index c8b76d08..70b500fb 100644
--- a/driver.c
+++ b/driver.c
@@ -1883,7 +1883,7 @@ const struct method *proto; /* protocol method table */
* Only re-poll if we allowed deletions and had no errors.
* Otherwise it is far too easy to get into infinite loops.
*/
- (protocol->retry && !ctl->keep && !ctl->errcount);
+ (fetches && protocol->retry && !ctl->keep && !ctl->errcount);
}
no_error: