X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/01894cf01fef34d6746711ba1bb17323ab8344b6..753849fdbcf8df0a408135be469f620bb74f2ab5:/compat.c diff --git a/compat.c b/compat.c index 38618d51..0cfb78f7 100644 --- a/compat.c +++ b/compat.c @@ -75,6 +75,19 @@ void setup_protocol(int f_out,int f_in) remote_protocol = read_int(f_in); if (protocol_version > remote_protocol) protocol_version = remote_protocol; + /* CVS support: fallback to finalized protocol if incompatible */ + if (protocol_version >= 30) { + int theirsub, oursub = SUBPROTOCOL_VERSION; + if (!read_batch) + write_varint(f_out, oursub); + theirsub = read_varint(f_in); + if (remote_protocol > PROTOCOL_VERSION) + theirsub = 0; /* 0 == final version */ + if (protocol_version < PROTOCOL_VERSION) + oursub = 0; + if (theirsub != oursub) + protocol_version--; + } } if (read_batch && remote_protocol > protocol_version) { rprintf(FERROR, "The protocol version in the batch file is too new (%d > %d).\n",