diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-08 16:30:21 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-08 16:30:21 +0000 |
commit | cca409b5ce0ad4b08fa36e80feb77aa8727c08a1 (patch) | |
tree | 35f78b1a3efdef5f81cca80f5f672e9aa4375728 /driver.c | |
parent | c3bb716979d671c1564070806c33ea3f0d66f698 (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |