diff options
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index a758d5ac..d03a2b0e 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -553,6 +553,12 @@ int main(int argc, char **argv) if (run.poll_interval && !getuid()) signal(SIGHUP, SIG_IGN); } + else if (run.logfile) + { + freopen(run.logfile, "a", stdout); + freopen(run.logfile, "a", stderr); + } + #ifdef linux interface_init(); |