diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-05 13:52:30 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-05 13:52:30 +0000 |
commit | 080b33c0fd2be11c9318e9d104c2d711bb1a4d8c (patch) | |
tree | f05146767f3fc2ec410764789af8e9e2f2c8bbff | |
parent | 27d4af103f9d17e1dd4985f48ff5cc36cffaad60 (diff) | |
download | fetchmail-080b33c0fd2be11c9318e9d104c2d711bb1a4d8c.tar.gz fetchmail-080b33c0fd2be11c9318e9d104c2d711bb1a4d8c.tar.bz2 fetchmail-080b33c0fd2be11c9318e9d104c2d711bb1a4d8c.zip |
Better option dump.
svn path=/trunk/; revision=225
-rw-r--r-- | fetchmail.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fetchmail.c b/fetchmail.c index 861544f6..ecb707c1 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -190,14 +190,14 @@ char **argv; /* perhaps we just want to check options? */ if (versioninfo) { printf("Taking options from command line"); - if (access(rcfile, 0)) - printf("\n"); - else - printf(" and %s\n", rcfile); + if (access(rcfile, 0)) + printf("\n"); + else + printf(" and %s\n", rcfile); + if (outlevel == O_VERBOSE) + printf("Lockfile at %s\n", tmpbuf); for (hostp = hostlist; hostp; hostp = hostp->next) { dump_params(hostp); - if (outlevel == O_VERBOSE) - printf(" Lockfile at %s\n", tmpbuf); } if (hostlist == NULL) (void) fprintf(stderr, |