diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-10-16 13:01:06 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-10-16 13:01:06 +0000 |
commit | 580682dcaae8305ac9ca9c5e1011ef963d86f5d1 (patch) | |
tree | 8d5ccac1987c1e986400daa4f5a411bde885ecf9 /uid.c | |
parent | 380a2d1a3a08c38a6280e1a1bc376a4c3b79e21d (diff) | |
download | fetchmail-580682dcaae8305ac9ca9c5e1011ef963d86f5d1.tar.gz fetchmail-580682dcaae8305ac9ca9c5e1011ef963d86f5d1.tar.bz2 fetchmail-580682dcaae8305ac9ca9c5e1011ef963d86f5d1.zip |
Now we can use --limit with daemon mode.
svn path=/trunk/; revision=2091
Diffstat (limited to 'uid.c')
-rw-r--r-- | uid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ void initialize_saved_lists(struct query *hostlist, const char *idfile) /* make sure lists are initially empty */ for (ctl = hostlist; ctl; ctl = ctl->next) - ctl->oldsaved = ctl->newsaved = (struct idlist *)NULL; + ctl->skipped = ctl->oldsaved = ctl->newsaved = (struct idlist *)NULL; /* let's get stored message UIDs from previous queries */ if ((tmpfp = fopen(idfile, "r")) != (FILE *)NULL) { |