From: Wayne Davison Date: Tue, 16 Oct 2007 04:08:21 +0000 (+0000) Subject: Write out the inc_recurse flag into a protocol-30 batch file. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/71456d301f8b28bab6fd29106ea4bb15c945a7d7 Write out the inc_recurse flag into a protocol-30 batch file. --- diff --git a/io.c b/io.c index a19017a6..3faf83d0 100644 --- a/io.c +++ b/io.c @@ -1861,6 +1861,8 @@ void start_write_batch(int fd) * actual communication so far depends on whether a daemon * is involved. */ write_int(batch_fd, protocol_version); + if (protocol_version >= 30) + write_byte(batch_fd, inc_recurse); write_int(batch_fd, checksum_seed); if (am_sender)