aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-11-24 08:48:15 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-11-24 08:48:15 +0000
commit8f9f656c2ad67cc7fccc8a70e13b35924308494a (patch)
tree5e5ed5fcad03eec8aa58f0f82eb1935b3a43e3ea /fetchmail.c
parent3a6b5cc29f8b62ba66c8f3404ae0cfd7c646c683 (diff)
downloadfetchmail-8f9f656c2ad67cc7fccc8a70e13b35924308494a.tar.gz
fetchmail-8f9f656c2ad67cc7fccc8a70e13b35924308494a.tar.bz2
fetchmail-8f9f656c2ad67cc7fccc8a70e13b35924308494a.zip
Make showdots work from the command line.
svn path=/trunk/; revision=2986
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index e4035813..c9ce7bb8 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1001,6 +1001,8 @@ static int load_params(int argc, char **argv, int optind)
run.poll_interval = cmd_run.poll_interval;
if (cmd_run.invisible)
run.invisible = cmd_run.invisible;
+ if (cmd_run.showdots)
+ run.showdots = cmd_run.showdots;
if (cmd_run.use_syslog)
run.use_syslog = (cmd_run.use_syslog == FLAG_TRUE);
if (cmd_run.postmaster)
@@ -1484,7 +1486,7 @@ static void dump_params (struct runctl *runp,
if (runp->invisible)
printf(_("Fetchmail will masquerade and will not generate Received\n"));
if (runp->showdots)
- printf(_("Fetchmail will show progress dots even in logfiles\n"));
+ printf(_("Fetchmail will show progress dots even in logfiles.\n"));
if (runp->postmaster)
printf(_("Fetchmail will forward misaddressed multidrop messages to %s.\n"),
runp->postmaster);