aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2003-08-22 00:30:46 +0000
committerWayne Davison <wayned@samba.org>2003-08-22 00:30:46 +0000
commit14820f635d47f0fce574f71353cc038e8021e4af (patch)
tree61d0aa5c5a0220d2febbd390d310667af819b5a2
parent59192f5650565d9c6de0194863c6094621be1c93 (diff)
downloadandroid_external_rsync-14820f635d47f0fce574f71353cc038e8021e4af.tar.gz
android_external_rsync-14820f635d47f0fce574f71353cc038e8021e4af.tar.bz2
android_external_rsync-14820f635d47f0fce574f71353cc038e8021e4af.zip
Make extra backup dirs mode 0700, not 0755.
-rw-r--r--backup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backup.c b/backup.c
index 7d64b6d7..82fa0495 100644
--- a/backup.c
+++ b/backup.c
@@ -156,7 +156,7 @@ static int robust_move(char *src, char *dst)
break;
/* no directory to write to */
case ENOENT:
- make_dir (dst, 0755);
+ make_dir(dst, 0700);
keep_trying--;
break;
default: