diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-12-01 06:22:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-12-01 06:22:53 +0000 |
commit | a30740affdb9342dee394ffdc77591ec9bc75ae7 (patch) | |
tree | 37f5bfba0acb8beda3bf262719c7d5e62257575a /fetchmail.c | |
parent | b5bcfbf59a39f3f65e87a2c658c21193c6a77bae (diff) | |
download | fetchmail-a30740affdb9342dee394ffdc77591ec9bc75ae7.tar.gz fetchmail-a30740affdb9342dee394ffdc77591ec9bc75ae7.tar.bz2 fetchmail-a30740affdb9342dee394ffdc77591ec9bc75ae7.zip |
Minor bugfixes.
svn path=/trunk/; revision=2993
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 8f270c0c..fc5371b2 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -677,7 +677,7 @@ int main(int argc, char **argv) #ifdef POP3_ENABLE /* leave the UIDL state alone if there have been any errors */ if (!check_only && - ((querystatus==PS_SUCCESS) || (querystatus==PS_NOMAIL))) + ((querystatus==PS_SUCCESS) || (querystatus==PS_NOMAIL) || (querystatus==PS_MAXFETCH))) uid_swap_lists(ctl); #endif /* POP3_ENABLE */ |