diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-07-25 16:00:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-07-25 16:00:16 +0000 |
commit | db5358a3bc37a9bffb5a4b4b679d206081450754 (patch) | |
tree | cca9a480de16a1ef334a16544bdb822a970c967c /daemon.c | |
parent | 3e954cdf885e844a8663aabfe71358b83e68dd96 (diff) | |
download | fetchmail-db5358a3bc37a9bffb5a4b4b679d206081450754.tar.gz fetchmail-db5358a3bc37a9bffb5a4b4b679d206081450754.tar.bz2 fetchmail-db5358a3bc37a9bffb5a4b4b679d206081450754.zip |
Attempted to prevent a sendmail loop.
svn path=/trunk/; revision=42
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -183,7 +183,7 @@ nottyDetach: } if (logfile) - open(logfile, O_CREAT|O_WRONLY, 0777); /* stdout */ + fd = open(logfile, O_CREAT|O_WRONLY, 0777); /* stdout */ else if (dup(fd) < 0) { /* stdout */ perror("dup"); |