aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/io.c b/io.c
index 4ade1ea1..0fa5af9e 100644
--- a/io.c
+++ b/io.c
@@ -1103,10 +1103,11 @@ static void writefd_unbuffered(int fd,char *buf,size_t len)
if (msg2sndr.head && !defer_forwarding_messages) {
struct msg_list_item *m = msg2sndr.head;
+ int code = (IVAL(m->buf,0) >> 24) - MPLEX_BASE;
if (!(msg2sndr.head = m->next))
msg2sndr.tail = NULL;
defer_forwarding_messages = 1;
- io_multiplex_write(IVAL(m->buf,0), m->buf+4, m->len-4);
+ io_multiplex_write(code, m->buf+4, m->len-4);
defer_forwarding_messages = 0;
free(m);
continue;