diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 21:09:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-25 21:09:53 +0000 |
commit | 6c4d0e25165d9f3256bd486028d010033d7a2e9c (patch) | |
tree | efe7aa76d81389d143545a6b0966d3bf71f5233c /fetchmail.c | |
parent | 67064276c060b0135c0bd8c0aa3292fa089134c3 (diff) | |
download | fetchmail-6c4d0e25165d9f3256bd486028d010033d7a2e9c.tar.gz fetchmail-6c4d0e25165d9f3256bd486028d010033d7a2e9c.tar.bz2 fetchmail-6c4d0e25165d9f3256bd486028d010033d7a2e9c.zip |
Change the `explicit' option to `skip'.
svn path=/trunk/; revision=147
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fetchmail.c b/fetchmail.c index 44c16ce9..331e5508 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -225,7 +225,7 @@ char **argv; /* pick up interactively any passwords we need but don't have */ for (hostp = hostlist; hostp; hostp = hostp->next) - if (!(implicitmode && hostp->explicit) + if (!(implicitmode && hostp->skip) && !hostp->password[0] && !hostp->rpopid[0]) { char prompt[BUFSIZ]; @@ -261,7 +261,7 @@ char **argv; */ do { for (hostp = hostlist; hostp; hostp = hostp->next) { - if (!implicitmode || !hostp->explicit) + if (!implicitmode || !hostp->skip) popstatus = query_host(hostp); } @@ -405,9 +405,9 @@ struct hostrec *queryctl; { char *cp; - if (queryctl->explicit || outlevel == O_VERBOSE) + if (queryctl->skip || outlevel == O_VERBOSE) printf(" This host will%s be queried when no host is specified.\n", - queryctl->explicit ? " not" : ""); + queryctl->skip ? " not" : ""); printf(" Username = '%s'\n", queryctl->remotename); if (queryctl->password[0] == '\0') printf(" Password will be prompted for.\n"); |