diff options
-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: |