diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-08-06 09:01:43 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-08-06 09:01:43 +0000 |
commit | eded3bba62428f6cc098c3bd8658d32aee3e2c58 (patch) | |
tree | 7f19d576bb20e4ad49b09d65833cefa1726ee3c5 /driver.c | |
parent | ba5207121664860a31125c9552ece6a8ffb51e54 (diff) | |
download | fetchmail-eded3bba62428f6cc098c3bd8658d32aee3e2c58.tar.gz fetchmail-eded3bba62428f6cc098c3bd8658d32aee3e2c58.tar.bz2 fetchmail-eded3bba62428f6cc098c3bd8658d32aee3e2c58.zip |
David Taylor's fixes for the UIDL code.
svn path=/trunk/; revision=2943
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2201,7 +2201,8 @@ const int maxfetch; /* maximum number of messages to fetch */ struct idlist *sdp; for (sdp = ctl->newsaved; sdp; sdp = sdp->next) - if (sdp->val.status.num == num) + if ((sdp->val.status.num == num) + && (!toolarge || oldmsg)) sdp->val.status.mark = UID_SEEN; } |