X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/7bec6a5cd6cabe93163707b901482a6692ca78cf..34ccb63e71367fb1f93530f60147ef6e4ac4e3e4:/match.c diff --git a/match.c b/match.c index a2121a17..3cd489d0 100644 --- a/match.c +++ b/match.c @@ -103,7 +103,7 @@ static void matched(int f,struct sum_struct *s,char *buf,off_t len, int l = 0; write_int(f,n); while (l < n) { - int n1 = MIN(WRITE_BLOCK_SIZE,n-l); + int n1 = MIN(CHUNK_SIZE,n-l); write_buf(f,map_ptr(buf,last_match+l,n1),n1); l += n1; }