diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-10-04 03:54:24 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-10-04 03:54:24 +0000 |
commit | f92f2a44d1a9aef4f65425742ac444650e98bbe4 (patch) | |
tree | ee7675d330550894a3ed4628b5a2204c822991f3 /fetchmail.c | |
parent | 1d75155f9c774c795e23d3074535a585a4143730 (diff) | |
download | fetchmail-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.c | 4 |
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); |