X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=apps%2Fclients.c;h=d5bd256cb7b4846bf9d31d7bee348aad1072bbec;hb=ef427cbe3bc216800179b66b889b71fec843387c;hp=c75c9841e69c4db5b46ef8f5dd137c7de32df88e;hpb=14a8a191f4ada9a2529659b02c58ebca31872dce;p=sympathy.git diff --git a/apps/clients.c b/apps/clients.c index c75c984..d5bd256 100644 --- a/apps/clients.c +++ b/apps/clients.c @@ -10,6 +10,12 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.14 2008/02/28 16:57:51 james + * *** empty log message *** + * + * Revision 1.13 2008/02/28 16:37:16 james + * *** empty log message *** + * * Revision 1.12 2008/02/28 12:12:24 james * *** empty log message *** * @@ -56,7 +62,7 @@ static char rcsid[] = "$Id$"; #include #include "clients.h" -static void +void client_msg (IPC_Msg * m, Context * c) { switch (m->hdr.type) @@ -89,10 +95,10 @@ client_msg (IPC_Msg * m, Context * c) tty_hangup (c->t); break; case IPC_MSG_TYPE_SETSIZE: - vt102_resize(c,m->setsize.winsize); + vt102_resize (c, m->setsize.winsize); break; case IPC_MSG_TYPE_RESET: - vt102_reset(c); + vt102_reset (c); break; default: fprintf (stderr, "Unhandeled message type %d\n", m->hdr.type);