aboutsummaryrefslogtreecommitdiffstats
path: root/apps/clients.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/clients.c')
-rw-r--r--apps/clients.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/clients.c b/apps/clients.c
index 04aafc1..73bf655 100644
--- a/apps/clients.c
+++ b/apps/clients.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.8 2008/02/20 18:31:44 james
+ * *** empty log message ***
+ *
* Revision 1.7 2008/02/15 23:52:12 james
* *** empty log message ***
*
@@ -74,7 +77,9 @@ client_free (Client * c)
socket_free (c->s);
free (c);
+#if 0
fprintf (stderr, "Client at %p freed\n", c);
+#endif
}
Client *
@@ -91,7 +96,9 @@ clients_new_client (Clients * cs, Socket * s, Context * ctx)
cs->head = c;
cs->n++;
+#if 0
fprintf (stderr, "Client at %p created\n", c);
+#endif
if (ipc_msg_send_debug (s, "new_client"))