X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/128cf58433592234d105f2b29865d0f739629cb3..b315601ce07701c4913c48a269775ab3284b25ba:/rsync.c diff --git a/rsync.c b/rsync.c index a65f01ff..a2b432a2 100644 --- a/rsync.c +++ b/rsync.c @@ -152,7 +152,6 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, int updated = 0; STRUCT_STAT st2; int change_uid, change_gid; - extern int am_daemon; if (dry_run) return 0; @@ -195,6 +194,12 @@ int set_perms(char *fname,struct file_struct *file,STRUCT_STAT *st, rprintf(FERROR,"chown %s : %s\n", fname,strerror(errno)); return 0; } + /* a lchown had been done - we have to re-stat if the + 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); + } updated = 1; }