diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-04-01 08:16:29 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-04-01 08:16:29 +0000 |
commit | d988048914d0f54c06c3bf86ab97a4c14b9e78fe (patch) | |
tree | bf5d8b17652a97e6522d75b0ffaf874403010146 /daemon.c | |
parent | 71bc7ce6858ee50574dc574a948ea24b5d2d0bfc (diff) | |
download | fetchmail-d988048914d0f54c06c3bf86ab97a4c14b9e78fe.tar.gz fetchmail-d988048914d0f54c06c3bf86ab97a4c14b9e78fe.tar.bz2 fetchmail-d988048914d0f54c06c3bf86ab97a4c14b9e78fe.zip |
Other routine fixups.
svn path=/trunk/; revision=3604
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -205,7 +205,7 @@ daemonize (const char *logfile, void (*termhook)(int)) sigaction (SIGHUP, &sa_new, NULL); #endif /* HAVE_SIGACTION */ if ((childpid = fork()) < 0) { - report(stderr, "fork (%)\n", strerror(errno)); + report(stderr, "fork (%s)\n", strerror(errno)); return(PS_IOERR); } else if (childpid > 0) { |