From a1cc199b34b4bc65cba2dce0cbb04c18f17271ac Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 28 Jan 2006 07:40:52 +0000 Subject: [PATCH] We enforce at least protocol 29 for --prune-empty-dirs because the file-list's sort order can be slightly wrong in older versions. --- compat.c | 49 +++++++++++++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/compat.c b/compat.c index 10eb0dad..aff743c1 100644 --- a/compat.c +++ b/compat.c @@ -35,6 +35,7 @@ extern int fuzzy_basis; extern int read_batch; extern int checksum_seed; extern int basis_dir_cnt; +extern int prune_empty_dirs; extern int protocol_version; extern char *dest_option; @@ -78,26 +79,38 @@ void setup_protocol(int f_out,int f_in) exit_cleanup(RERR_PROTOCOL); } - if (fuzzy_basis && protocol_version < 29) { - rprintf(FERROR, - "--fuzzy requires protocol 29 or higher (negotiated %d).\n", - protocol_version); - exit_cleanup(RERR_PROTOCOL); - } + if (protocol_version < 29) { + if (fuzzy_basis) { + rprintf(FERROR, + "--fuzzy requires protocol 29 or higher" + " (negotiated %d).\n", + protocol_version); + exit_cleanup(RERR_PROTOCOL); + } - if (basis_dir_cnt && inplace && protocol_version < 29) { - rprintf(FERROR, - "%s with --inplace requires protocol 29 or higher (negotiated %d).\n", - dest_option, protocol_version); - exit_cleanup(RERR_PROTOCOL); - } + if (basis_dir_cnt && inplace) { + rprintf(FERROR, + "%s with --inplace requires protocol 29 or higher" + " (negotiated %d).\n", + dest_option, protocol_version); + exit_cleanup(RERR_PROTOCOL); + } - if (basis_dir_cnt > 1 && protocol_version < 29) { - rprintf(FERROR, - "Using more than one %s option requires protocol 29 or higher\n" - "(negotiated %d).\n", - dest_option, protocol_version); - exit_cleanup(RERR_PROTOCOL); + if (basis_dir_cnt > 1) { + rprintf(FERROR, + "Using more than one %s option requires protocol" + " 29 or higher (negotiated %d).\n", + dest_option, protocol_version); + exit_cleanup(RERR_PROTOCOL); + } + + if (prune_empty_dirs) { + rprintf(FERROR, + "--prune-empty-dirs requires protocol 29 or higher" + " (negotiated %d).\n", + protocol_version); + exit_cleanup(RERR_PROTOCOL); + } } if (am_server) { -- 2.34.1