diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-12-01 11:10:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-12-01 11:10:33 +0000 |
commit | e0383f59bd00db6d15d425fafc9517bf50dbacfa (patch) | |
tree | 07ac532c2de780f85253b27419480b887fc4a538 /server.c | |
parent | 2b3ba1cfade5e81c6c18b2d9733423512893c86b (diff) | |
download | rtmux-e0383f59bd00db6d15d425fafc9517bf50dbacfa.tar.gz rtmux-e0383f59bd00db6d15d425fafc9517bf50dbacfa.tar.bz2 rtmux-e0383f59bd00db6d15d425fafc9517bf50dbacfa.zip |
Better error messages with no server.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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: |