From: Wayne Davison Date: Thu, 13 May 2004 06:34:03 +0000 (+0000) Subject: Don't force the modtime on our backup dirs -- the dirs in the X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5291364f1d0e54a1a61fdc4f038d0420200b8971 Don't force the modtime on our backup dirs -- the dirs in the backup hierarchy should have their own timestamps. --- diff --git a/backup.c b/backup.c index db21fb1a..391e3556 100644 --- a/backup.c +++ b/backup.c @@ -102,7 +102,6 @@ static int make_bak_dir(char *fullpath) "make_bak_dir stat %s failed: %s\n", full_fname(rel), strerror(errno)); } else { - set_modtime(fullpath, st.st_mtime); do_lchown(fullpath, st.st_uid, st.st_gid); do_chmod(fullpath, st.st_mode); }