git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1784
d4fa192b-c00b-0410-8231-
f00ffab90ce4
#include <sys/types.h>
#include <sys/wait.h>
-#include <err.h> /* XXX */
-
#ifndef HAVE_SETPROCTITLE
#include "compat/setproctitle.h"
#endif
AZ(pipe(child_fds));
MCF_ParamSync();
i = fork();
- if (i < 0)
- errx(1, "Could not fork child");
+ if (i < 0) {
+ perror("Could not fork child");
+ exit(1);
+ }
if (i == 0) {
if (geteuid() == 0) {
XXXAZ(setgid(params->gid));
* The management process and CLI handling
*/
-#include <err.h>
+#include <sys/stat.h>
+
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
-#include <sys/stat.h>
#ifndef HAVE_DAEMON
#include "compat/daemon.h"
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
-#include <err.h>
#include <errno.h>
#ifndef HAVE_STRLCPY