diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 21:21:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 21:21:48 +0000 |
commit | 5a3b92c2dfd9fbcf8bda10742cea1fb47927536d (patch) | |
tree | 254d6651fbcc5d57a46ebbd066aed77ade2a438f /server.c | |
parent | 4add09eab7c263ea57e5940c350c780e883813b9 (diff) | |
download | rtmux-5a3b92c2dfd9fbcf8bda10742cea1fb47927536d.tar.gz rtmux-5a3b92c2dfd9fbcf8bda10742cea1fb47927536d.tar.bz2 rtmux-5a3b92c2dfd9fbcf8bda10742cea1fb47927536d.zip |
-d option to attach. Also fix CC in Makefile and make it build with DEBUG again.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: server.c,v 1.25 2007-10-04 20:01:10 nicm Exp $ */ +/* $Id: server.c,v 1.26 2007-10-04 21:21:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -74,7 +74,9 @@ server_start(char *path) return (0); } +#ifdef DEBUG xmalloc_clear(); +#endif logfile("server"); setproctitle("server (%s)", path); |