From 8f842170239eea1b85821b314f9e5e8d12543c4a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 24 Oct 2010 19:54:41 +0000 Subject: Put setproctitle back under HAVE_SETPROCTITLE. --- client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'client.c') diff --git a/client.c b/client.c index 3625da3f..73c3358c 100644 --- a/client.c +++ b/client.c @@ -1,4 +1,4 @@ -/* $Id: client.c,v 1.99 2010-10-24 01:31:08 tcunha Exp $ */ +/* $Id: client.c,v 1.100 2010-10-24 19:54:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -157,7 +157,9 @@ client_main(int argc, char **argv, int flags) } /* Set process title, log and signals now this is the client. */ +#ifdef HAVE_SETPROCTITLE setproctitle("client (%s)", socket_path); +#endif logfile("client"); /* Create imsg. */ -- cgit