summaryrefslogtreecommitdiffstats
path: root/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-12-01 11:10:33 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-12-01 11:10:33 +0000
commite0383f59bd00db6d15d425fafc9517bf50dbacfa (patch)
tree07ac532c2de780f85253b27419480b887fc4a538 /server.c
parent2b3ba1cfade5e81c6c18b2d9733423512893c86b (diff)
Better error messages with no server.
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: