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 | |
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
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | driver.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -13,6 +13,7 @@ ------------------------------------------------------------------------------ fetchmail-4.3.1 () * Minor portation fixes for early AIX version and NextSTEP. +* Fixed a bad interaction between --limit and the repoll feature. There are 280 people on fetchmail-friends and 8 on fetchmail-announce. @@ -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: |