diff options
| author | Wayne Davison <wayned@samba.org> | 2006-05-02 16:42:20 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-05-02 16:42:20 +0000 |
| commit | b24498ec2c76807e7cdc201216991d4def5b293a (patch) | |
| tree | 330d88596004bb029a868863fc3e878cc7533b25 /main.c | |
| parent | b2d4639543c91a2186517569945f835d55c7affc (diff) | |
| download | android_external_rsync-b24498ec2c76807e7cdc201216991d4def5b293a.tar.gz android_external_rsync-b24498ec2c76807e7cdc201216991d4def5b293a.tar.bz2 android_external_rsync-b24498ec2c76807e7cdc201216991d4def5b293a.zip | |
Set a new variable, startdir_depth, to indicate how deep the
destination dir is in a daemon module's path.
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -66,9 +66,8 @@ extern char *rsync_path; extern char *shell_cmd; extern char *batch_name; -extern char curr_dir[MAXPATHLEN]; - int local_server = 0; +int startdir_depth = 0; mode_t orig_umask = 0; struct file_list *the_file_list; @@ -479,6 +478,8 @@ static char *get_local_name(struct file_list *flist, char *dest_path) full_fname(dest_path)); exit_cleanup(RERR_FILESELECT); } + if (sanitize_paths) + startdir_depth = count_dir_elements(dest_path); return NULL; } if (flist->count > 1) { @@ -531,6 +532,8 @@ static char *get_local_name(struct file_list *flist, char *dest_path) full_fname(dest_path)); exit_cleanup(RERR_FILESELECT); } + if (sanitize_paths) + startdir_depth = count_dir_elements(dest_path); return NULL; } @@ -551,6 +554,8 @@ static char *get_local_name(struct file_list *flist, char *dest_path) full_fname(dest_path)); exit_cleanup(RERR_FILESELECT); } + if (sanitize_paths) + startdir_depth = count_dir_elements(dest_path); *cp = '/'; return cp + 1; @@ -793,11 +798,9 @@ static void do_server_recv(int f_in, int f_out, int argc,char *argv[]) /* Now that we know what our destination directory turned out to be, * we can sanitize the --link-/copy-/compare-dest args correctly. */ if (sanitize_paths) { - char *dest_path = curr_dir + strlen(lp_path(module_id)); - int dest_depth = count_dir_elements(dest_path); char **dir; for (dir = basis_dir; *dir; dir++) - *dir = sanitize_path(NULL, *dir, NULL, dest_depth); + *dir = sanitize_path(NULL, *dir, NULL, startdir_depth); } exit_code = do_recv(f_in,f_out,flist,local_name); |
