We enforce at least protocol 29 for --prune-empty-dirs because the
authorWayne Davison <wayned@samba.org>
Sat, 28 Jan 2006 07:40:52 +0000 (07:40 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 28 Jan 2006 07:40:52 +0000 (07:40 +0000)
file-list's sort order can be slightly wrong in older versions.

compat.c

index 10eb0da..aff743c 100644 (file)
--- 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 read_batch;
 extern int checksum_seed;
 extern int basis_dir_cnt;
+extern int prune_empty_dirs;
 extern int protocol_version;
 extern char *dest_option;
 
 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);
        }
 
                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) {
        }
 
        if (am_server) {