From 41b84ce012d7e45f580fa1ccdc7cc480f72578d2 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Thu, 31 Mar 2005 23:30:03 +0000 Subject: [PATCH] Don't try to tweak read-only dest-dir permissions in list-only mode. --- generator.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/generator.c b/generator.c index ca3e0737..ec0e04d1 100644 --- a/generator.c +++ b/generator.c @@ -1169,7 +1169,8 @@ void generate_files(int f_out, struct file_list *flist, char *local_name) /* We need to ensure that any dirs we create have writeable * permissions during the time we are putting files within * them. This is then fixed after the transfer is done. */ - if (!am_root && S_ISDIR(file->mode) && !(file->mode & S_IWUSR)) { + if (!am_root && S_ISDIR(file->mode) && !(file->mode & S_IWUSR) + && !list_only) { int mode = file->mode | S_IWUSR; /* user write */ char *fname = local_name ? local_name : fbuf; if (do_chmod(fname, mode & CHMOD_BITS) < 0) { -- 2.34.1