aboutsummaryrefslogtreecommitdiffstats
path: root/backup.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-05-13 06:34:03 +0000
committerWayne Davison <wayned@samba.org>2004-05-13 06:34:03 +0000
commit5291364f1d0e54a1a61fdc4f038d0420200b8971 (patch)
tree8a0171da1285cfd986d6d44f516d8aa840e8a8de /backup.c
parent41cc97ae64617cf5e1cb5c35a7b63852a92d4d1a (diff)
downloadandroid_external_rsync-5291364f1d0e54a1a61fdc4f038d0420200b8971.tar.gz
android_external_rsync-5291364f1d0e54a1a61fdc4f038d0420200b8971.tar.bz2
android_external_rsync-5291364f1d0e54a1a61fdc4f038d0420200b8971.zip
Don't force the modtime on our backup dirs -- the dirs in the
backup hierarchy should have their own timestamps.
Diffstat (limited to 'backup.c')
-rw-r--r--backup.c1
1 files changed, 0 insertions, 1 deletions
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);
}