aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-25 21:09:53 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-25 21:09:53 +0000
commit6c4d0e25165d9f3256bd486028d010033d7a2e9c (patch)
treeefe7aa76d81389d143545a6b0966d3bf71f5233c /fetchmail.c
parent67064276c060b0135c0bd8c0aa3292fa089134c3 (diff)
downloadfetchmail-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.c8
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");