aboutsummaryrefslogtreecommitdiffstats
path: root/daemon.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2002-04-01 08:16:29 +0000
committerEric S. Raymond <esr@thyrsus.com>2002-04-01 08:16:29 +0000
commitd988048914d0f54c06c3bf86ab97a4c14b9e78fe (patch)
treebf5d8b17652a97e6522d75b0ffaf874403010146 /daemon.c
parent71bc7ce6858ee50574dc574a948ea24b5d2d0bfc (diff)
downloadfetchmail-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon.c b/daemon.c
index d2a5b2d9..220d0d0c 100644
--- a/daemon.c
+++ b/daemon.c
@@ -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) {