aboutsummaryrefslogtreecommitdiffstats
path: root/compat.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-01-28 07:40:52 +0000
committerWayne Davison <wayned@samba.org>2006-01-28 07:40:52 +0000
commita1cc199b34b4bc65cba2dce0cbb04c18f17271ac (patch)
tree297ec8ba0764bd300b890f8566d8ddca2c6f9250 /compat.c
parentc22260706cb5ff710f6ae18b7f8309196aa93c75 (diff)
downloadandroid_external_rsync-a1cc199b34b4bc65cba2dce0cbb04c18f17271ac.tar.gz
android_external_rsync-a1cc199b34b4bc65cba2dce0cbb04c18f17271ac.tar.bz2
android_external_rsync-a1cc199b34b4bc65cba2dce0cbb04c18f17271ac.zip
We enforce at least protocol 29 for --prune-empty-dirs because the
file-list's sort order can be slightly wrong in older versions.
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c49
1 files 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) {