diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-04 06:07:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-04 06:07:16 +0000 |
commit | 36c8204ae4c5abf228f75c58026edf40706d8e6d (patch) | |
tree | 0532b891dee26be2fc400c87e1e41729de137aef | |
parent | 4b157775734d3e2990927bf53491cb3956ce3eb3 (diff) | |
download | fetchmail-36c8204ae4c5abf228f75c58026edf40706d8e6d.tar.gz fetchmail-36c8204ae4c5abf228f75c58026edf40706d8e6d.tar.bz2 fetchmail-36c8204ae4c5abf228f75c58026edf40706d8e6d.zip |
Fix incorrect deletion location.
svn path=/trunk/; revision=474
-rw-r--r-- | driver.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1016,13 +1016,10 @@ const struct method *proto; /* protocol method table */ vtalarm(ctl->timeout); if (ok != 0) goto cleanUp; + delete_uid(&ctl->newsaved, num); } else if (outlevel > O_SILENT) - { - /* nuke it from the unseen-messages list */ - delete_uid(&ctl->newsaved, num); fprintf(stderr, " not flushed\n"); - } } /* remove all messages flagged for deletion */ |