aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-05-03 06:32:59 +0000
committerWayne Davison <wayned@samba.org>2006-05-03 06:32:59 +0000
commitee8d9636d145ee545b66cd2490cea11ebe6a569b (patch)
tree25ca707f63aa4ee9d9f66c7a0f44053e11d93ef3 /io.c
parent38de2866e5892ffc77a96636cd706239cbffbf4b (diff)
downloadandroid_external_rsync-ee8d9636d145ee545b66cd2490cea11ebe6a569b.tar.gz
android_external_rsync-ee8d9636d145ee545b66cd2490cea11ebe6a569b.tar.bz2
android_external_rsync-ee8d9636d145ee545b66cd2490cea11ebe6a569b.zip
A small optimization to the new code in msg2sndr_flush().
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
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;