diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-11 16:14:14 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-11 16:14:14 +0000 |
commit | 05279ca1a8a76f6213965f9ed86bbe920979abf3 (patch) | |
tree | 7894e94710536117b6d26b3f7f37219778ef08bd | |
parent | 2a0c5c491511c5145fc0a8d48568aeaf9d459263 (diff) | |
download | fetchmail-05279ca1a8a76f6213965f9ed86bbe920979abf3.tar.gz fetchmail-05279ca1a8a76f6213965f9ed86bbe920979abf3.tar.bz2 fetchmail-05279ca1a8a76f6213965f9ed86bbe920979abf3.zip |
Option dump cleanup.
svn path=/trunk/; revision=310
-rw-r--r-- | fetchmail.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c index 20481783..34009a33 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -479,14 +479,14 @@ struct hostrec *queryctl; if (queryctl->skip || outlevel == O_VERBOSE) printf(" This host will%s be queried when no host is specified.\n", queryctl->skip ? " not" : ""); - printf(" Username = '%s'\n", queryctl->remotename); + printf(" Username = '%s'.\n", queryctl->remotename); if (queryctl->password[0] == '\0') printf(" Password will be prompted for.\n"); else if (outlevel == O_VERBOSE) if (queryctl->protocol == P_APOP) - printf(" APOP secret = '%s'\n", queryctl->password); + printf(" APOP secret = '%s'.\n", queryctl->password); else - printf(" Password = '%s'\n", queryctl->password); + printf(" Password = '%s'.\n", queryctl->password); if (queryctl->protocol == P_POP3 && queryctl->port == KPOP_PORT && queryctl->authenticate == A_KERBEROS) @@ -499,6 +499,7 @@ struct hostrec *queryctl; printf(" (using port %d)", queryctl->port); else if (outlevel == O_VERBOSE) printf(" (using default port)"); + putchar('.'); putchar('\n'); if (queryctl->authenticate == A_KERBEROS) printf(" Kerberos authentication enabled.\n"); |