From: Andrew Tridgell Date: Thu, 26 Mar 1998 06:09:04 +0000 (+0000) Subject: fixed a bug I introduced in the last big commit X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/a070c37b7e880ac3593c35da448fe7303e797004 fixed a bug I introduced in the last big commit --- diff --git a/io.c b/io.c index b5ceff12..a557a9b8 100644 --- a/io.c +++ b/io.c @@ -134,6 +134,7 @@ static int readfd(int fd,char *buffer,int N) memcpy(buffer+total,read_buffer_p,ret); read_buffer_p += ret; read_buffer_len -= ret; + total += ret; continue; }