We don't ever need to send the --chmod option to the remote rsync.
authorWayne Davison <wayned@samba.org>
Sat, 21 Jan 2006 07:53:40 +0000 (07:53 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 21 Jan 2006 07:53:40 +0000 (07:53 +0000)
options.c

index 704833a..c704074 100644 (file)
--- a/options.c
+++ b/options.c
@@ -145,7 +145,6 @@ char *log_format = NULL;
 char *password_file = NULL;
 char *rsync_path = RSYNC_PATH;
 char *backup_dir = NULL;
 char *password_file = NULL;
 char *rsync_path = RSYNC_PATH;
 char *backup_dir = NULL;
-char *chmod_mode = NULL;
 char backup_dir_buf[MAXPATHLEN];
 int rsync_port = 0;
 int compare_dest = 0;
 char backup_dir_buf[MAXPATHLEN];
 int rsync_port = 0;
 int compare_dest = 0;
@@ -174,6 +173,7 @@ static int itemize_changes = 0;
 static int refused_delete, refused_archive_part, refused_compress;
 static int refused_partial, refused_progress, refused_delete_before;
 static int refused_inplace;
 static int refused_delete, refused_archive_part, refused_compress;
 static int refused_partial, refused_progress, refused_delete_before;
 static int refused_inplace;
+static char *chmod_mode = NULL;
 static char *max_size_arg, *min_size_arg;
 static char partialdir_for_delayupdate[] = ".~tmp~";
 
 static char *max_size_arg, *min_size_arg;
 static char partialdir_for_delayupdate[] = ".~tmp~";
 
@@ -1636,11 +1636,6 @@ void server_options(char **args,int *argc)
                }
        }
 
                }
        }
 
-       if (chmod_mode && !am_sender) {
-               args[ac++] = "--chmod";
-               args[ac++] = chmod_mode;
-       }
-
        if (files_from && (!am_sender || filesfrom_host)) {
                if (filesfrom_host) {
                        args[ac++] = "--files-from";
        if (files_from && (!am_sender || filesfrom_host)) {
                if (filesfrom_host) {
                        args[ac++] = "--files-from";