aboutsummaryrefslogtreecommitdiffstats
path: root/src/ipc.c
diff options
context:
space:
mode:
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);
}
}
-
-