One call to link_stat() (in set_perms()) needed to honor the setting
authorWayne Davison <wayned@samba.org>
Sat, 31 Jul 2004 16:15:41 +0000 (16:15 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 31 Jul 2004 16:15:41 +0000 (16:15 +0000)
of keep_dirlinks if the current item is a directory.

rsync.c

diff --git a/rsync.c b/rsync.c
index e46d086..48aa610 100644 (file)
--- a/rsync.c
+++ b/rsync.c
@@ -32,6 +32,7 @@ extern int preserve_uid;
 extern int preserve_gid;
 extern int force_delete;
 extern int recurse;
+extern int keep_dirlinks;
 extern int make_backups;
 extern char *backup_dir;
 extern int inplace;
@@ -187,7 +188,8 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st,
                  * destination had the setuid or setgid bits set due
                  * to the side effect of the chown call */
                if (st->st_mode & (S_ISUID | S_ISGID)) {
-                       link_stat(fname, st, 0);
+                       link_stat(fname, st,
+                                 keep_dirlinks && S_ISDIR(st->st_mode));
                }
                updated = 1;
        }