From: Wayne Davison Date: Wed, 3 May 2006 06:32:59 +0000 (+0000) Subject: A small optimization to the new code in msg2sndr_flush(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/ee8d9636d145ee545b66cd2490cea11ebe6a569b A small optimization to the new code in msg2sndr_flush(). --- diff --git a/io.c b/io.c index e235d3e5..bf464cfc 100644 --- a/io.c +++ b/io.c @@ -1136,7 +1136,7 @@ static void msg2sndr_flush(void) while (msg2sndr.head && io_multiplexing_out) { struct msg_list_item *m = msg2sndr.head; - int tag = (IVAL(m->buf, 0) >> 24) - MPLEX_BASE; + int tag = *((uchar*)m->buf+3) - MPLEX_BASE; if (!(msg2sndr.head = m->next)) msg2sndr.tail = NULL; defer_forwarding_messages = 1;