diff options
| author | Wayne Davison <wayned@samba.org> | 2006-10-08 20:57:01 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-10-08 20:57:01 +0000 |
| commit | 6f3684ffb5a772925a970ff61a01512fbb77da60 (patch) | |
| tree | fa278fc1c9deed651f45f08aa096f5f7d220ce69 /flist.c | |
| parent | 615a5415c9f3b156f3f456688f8b702fa05deb8d (diff) | |
| download | android_external_rsync-6f3684ffb5a772925a970ff61a01512fbb77da60.tar.gz android_external_rsync-6f3684ffb5a772925a970ff61a01512fbb77da60.tar.bz2 android_external_rsync-6f3684ffb5a772925a970ff61a01512fbb77da60.zip | |
Call push_dir() with its new boolean arg.
Diffstat (limited to 'flist.c')
| -rw-r--r-- | flist.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1073,7 +1073,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) if (filesfrom_fd >= 0) { if (sanitize_paths) die_on_unsafe_path(argv[0], 0); - if (argv[0] && !push_dir(argv[0])) { + if (argv[0] && !push_dir(argv[0], 0)) { rsyserr(FERROR, errno, "push_dir %s failed", full_fname(argv[0])); exit_cleanup(RERR_FILESELECT); @@ -1211,7 +1211,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) strlcpy(olddir, curr_dir, sizeof olddir); - if (!push_dir(dir)) { + if (!push_dir(dir, 0)) { io_error |= IOERR_GENERAL; rsyserr(FERROR, errno, "push_dir %s failed", full_fname(dir)); |
