aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipc.c
diff options
context:
space:
mode:
authorjames <>2008-03-03 18:16:16 +0000
committerjames <>2008-03-03 18:16:16 +0000
commitfdf6085b89ef5053513fcb21bc0d871602d11696 (patch)
tree068181b640c834c8e712ad01e909f02e050976b2 /src/ipc.c
parent5ec015afd6bc1033b4447e2d65f03438053fa3a7 (diff)
downloadsympathy-fdf6085b89ef5053513fcb21bc0d871602d11696.tar.gz
sympathy-fdf6085b89ef5053513fcb21bc0d871602d11696.tar.bz2
sympathy-fdf6085b89ef5053513fcb21bc0d871602d11696.zip
*** empty log message ***
Diffstat (limited to 'src/ipc.c')
-rw-r--r--src/ipc.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/ipc.c b/src/ipc.c
index 5da5721..38f5d08 100644
--- a/src/ipc.c
+++ b/src/ipc.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.8 2008/03/03 18:16:16 james
+ * *** empty log message ***
+ *
* Revision 1.7 2008/03/03 18:15:19 james
* *** empty log message ***
*
@@ -270,7 +273,8 @@ ipc_execute_message (IPC_Msg * m, Context * c)
tty_send_break (c->t);
break;
case IPC_MSG_TYPE_SETFLOW:
- log_f (c->l, "<flow control turned %s>",m->setflow.flow?"on":"off");
+ log_f (c->l, "<flow control turned %s>",
+ m->setflow.flow ? "on" : "off");
tty_set_flow (c->t, m->setflow.flow);
break;
case IPC_MSG_TYPE_SETANSI:
@@ -287,8 +291,6 @@ ipc_execute_message (IPC_Msg * m, Context * c)
vt102_reset (c);
break;
default:
- log_f(c->l,"<Unhandled message type %d>", m->hdr.type);
+ log_f (c->l, "<Unhandled message type %d>", m->hdr.type);
}
}
-
-