diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-07-14 13:45:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-07-14 13:45:37 +0000 |
commit | 8b7d76c3679d48ea08ad75ff839edb17e6195acd (patch) | |
tree | 9f14bdaa8e1df4037fe8a9ebd4ba6133c3448e0d /fetchmail.c | |
parent | df80d21fdc13f93d9f5cc39a3525dd8698988a83 (diff) | |
download | fetchmail-8b7d76c3679d48ea08ad75ff839edb17e6195acd.tar.gz fetchmail-8b7d76c3679d48ea08ad75ff839edb17e6195acd.tar.bz2 fetchmail-8b7d76c3679d48ea08ad75ff839edb17e6195acd.zip |
Added nosyslog.
svn path=/trunk/; revision=1967
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index a15a5328..148d175a 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -970,7 +970,7 @@ static int load_params(int argc, char **argv, int optind) if (cmd_run.invisible) run.invisible = cmd_run.invisible; if (cmd_run.use_syslog) - run.use_syslog = cmd_run.use_syslog; + run.use_syslog = (cmd_run.use_syslog == FLAG_TRUE); /* check and daemon options are not compatible */ if (check_only && run.poll_interval) |