aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'server.c')
-rw-r--r--server.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/server.c b/server.c
index 9356983e..05a84c4a 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.41 2007-11-27 20:01:30 nicm Exp $ */
+/* $Id: server.c,v 1.42 2007-12-01 11:10:33 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -65,8 +65,7 @@ server_start(const char *path)
switch (fork()) {
case -1:
- log_warn("fork");
- return (-1);
+ fatal("fork");
case 0:
break;
default: