diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-04 21:44:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-04 21:44:50 +0000 |
commit | dba153ee6173bcc1e526163e7434d8a5915baf0b (patch) | |
tree | 2bd68e148356eb2ca2c2ac1c31f6056b7fbb6793 /fetchmail.c | |
parent | f7fa6d049541c5558289a5e885fc03ee111816e4 (diff) | |
download | fetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.tar.gz fetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.tar.bz2 fetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.zip |
RC file syntax change, folder->mailbox, remote->remotename.
svn path=/trunk/; revision=220
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index fa3802f2..ecf398e4 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -167,7 +167,6 @@ char **argv; else printf(" and %s\n", rcfile); for (hostp = hostlist; hostp; hostp = hostp->next) { - printf("Options for host %s:\n", hostp->servername); dump_params(hostp); if (outlevel == O_VERBOSE) printf(" Lockfile at %s\n", tmpbuf); @@ -383,6 +382,8 @@ static int showversioninfo() int dump_params (queryctl) struct hostrec *queryctl; { + printf("Options for %s retrieving from %s:\n", + hostp->localname, hostp->servername); if (queryctl->skip || outlevel == O_VERBOSE) printf(" This host will%s be queried when no host is specified.\n", queryctl->skip ? " not" : ""); |