chiark / gitweb /
*** empty log message ***
[sympathy.git] / apps / clients.c
index c75c9841e69c4db5b46ef8f5dd137c7de32df88e..d5bd256cb7b4846bf9d31d7bee348aad1072bbec 100644 (file)
@@ -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 <malloc.h>
 #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);