Fix fork error message.

This commit is contained in:
Roy Marples 2008-02-02 22:17:44 +00:00
parent 7b27a12f6c
commit 5014968e83

View File

@ -627,14 +627,14 @@ static pid_t _exec_service (const char *service, const char *arg)
_exit (EXIT_FAILURE);
}
if (pid == -1)
fprintf (stderr, "fork: %s\n", strerror (errno));
sigprocmask (SIG_SETMASK, &old, NULL);
free (fifo);
free (file);
if (pid == -1)
fprintf (stderr, "vfork: %s\n", strerror (errno));
return (pid);
}