diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-10 22:11:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-10 22:11:36 +0000 |
commit | 3b86b66668ca47b1f439fb5f49e3f8078caf4a33 (patch) | |
tree | 1a79559624da526ea2cb94cb16623c6340854403 /fetchmail.c | |
parent | 9eaa83099fdcaa492e2ec8df46f4eb81c9dd813d (diff) | |
download | fetchmail-3b86b66668ca47b1f439fb5f49e3f8078caf4a33.tar.gz fetchmail-3b86b66668ca47b1f439fb5f49e3f8078caf4a33.tar.bz2 fetchmail-3b86b66668ca47b1f439fb5f49e3f8078caf4a33.zip |
UIDs, take 3.
svn path=/trunk/; revision=290
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index d65de5f4..e3369d2b 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -539,19 +539,19 @@ struct hostrec *queryctl; else printf(" Messages will be SMTP-forwarded to '%s'\n", queryctl->smtphost); if (queryctl->protocol > P_POP2) - if (!queryctl->saved) + if (!queryctl->oldsaved) printf(" No UIDs saved from this host.\n"); else { struct idlist *idp; int count = 0; - for (idp = hostp->saved; idp; idp = idp->next) + for (idp = hostp->oldsaved; idp; idp = idp->next) ++count; printf(" %d UIDs saved.\n", count); if (outlevel == O_VERBOSE) - for (idp = hostp->saved; idp; idp = idp->next) + for (idp = hostp->oldsaved; idp; idp = idp->next) fprintf(stderr, "\t%s %s\n", hostp->servername, idp->id); } } |