diff options
-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, |