aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-04 03:54:24 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-04 03:54:24 +0000
commitf92f2a44d1a9aef4f65425742ac444650e98bbe4 (patch)
treeee7675d330550894a3ed4628b5a2204c822991f3 /fetchmail.c
parent1d75155f9c774c795e23d3074535a585a4143730 (diff)
downloadfetchmail-f92f2a44d1a9aef4f65425742ac444650e98bbe4.tar.gz
fetchmail-f92f2a44d1a9aef4f65425742ac444650e98bbe4.tar.bz2
fetchmail-f92f2a44d1a9aef4f65425742ac444650e98bbe4.zip
Have dump_params notice when syslog is on.
svn path=/trunk/; revision=1475
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 33954a31..443d16d8 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -153,6 +153,10 @@ int main (int argc, char **argv)
printf("Lockfile at %s\n", tmpbuf);
if (logfile)
printf("Logfile is %s\n", logfile);
+#if defined(HAVE_SYSLOG)
+ if (use_syslog)
+ printf("Progress messages will be logged via syslog\n");
+#endif
for (ctl = querylist; ctl; ctl = ctl->next) {
if (ctl->active && !(implicitmode && ctl->server.skip))
dump_params(ctl);