diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-31 14:26:26 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-31 14:26:26 +0000 |
commit | 08d9f46aae69e942a5db9a20463c27ac3c0ebbb8 (patch) | |
tree | 9eb92bf6763c7f24c0c1a4003b39f650f60b33d6 /client.c | |
parent | 48ad0431fb46871cb4a045b275c36ff524cc0fa0 (diff) | |
download | rtmux-08d9f46aae69e942a5db9a20463c27ac3c0ebbb8.tar.gz rtmux-08d9f46aae69e942a5db9a20463c27ac3c0ebbb8.tar.bz2 rtmux-08d9f46aae69e942a5db9a20463c27ac3c0ebbb8.zip |
Make it build/run on Linux.
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: client.c,v 1.18 2007-10-24 11:42:02 nicm Exp $ */ +/* $Id: client.c,v 1.19 2007-10-31 14:26:26 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -137,7 +137,9 @@ client_main(struct client_ctx *cctx) int timeout; logfile("client"); +#ifndef NO_SETPROCTITLE setproctitle("client"); +#endif siginit(); if ((cctx->loc_fd = local_init(&cctx->loc_in, &cctx->loc_out)) == -1) |