summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1fea629)
raw | patch | inline | side by side (parent: 1fea629)
author | Junio C Hamano <junkio@cox.net> | |
Sat, 1 Oct 2005 18:58:43 +0000 (11:58 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 1 Oct 2005 18:58:43 +0000 (11:58 -0700) |
Fix the last two holdouts that forced mode bits stricter than the user's umask.
Noticed by Wolfgang Denk and fixed by Linus.
[jc: applied the same fix to mailsplit just for the sake of consistency.]
Signed-off-by: Junio C Hamano <junkio@cox.net>
Noticed by Wolfgang Denk and fixed by Linus.
[jc: applied the same fix to mailsplit just for the sake of consistency.]
Signed-off-by: Junio C Hamano <junkio@cox.net>
index.c | patch | blob | history | |
mailsplit.c | patch | blob | history |
index 87fc7b0387b818001fb0e53fdb713fe1bad4f822..bdde65f75c9d2a9b77e6bf290ebed57f12c8e70b 100644 (file)
--- a/index.c
+++ b/index.c
signal(SIGINT, remove_lock_file_on_signal);
atexit(remove_lock_file);
}
- return open(cf->lockfile, O_RDWR | O_CREAT | O_EXCL, 0600);
+ return open(cf->lockfile, O_RDWR | O_CREAT | O_EXCL, 0666);
}
int commit_index_file(struct cache_file *cf)
diff --git a/mailsplit.c b/mailsplit.c
index a3238c20da27c3348d406066b595cd085e600558..7afea1aaca6af966b6532ba66f7411d897a2874f 100644 (file)
--- a/mailsplit.c
+++ b/mailsplit.c
unsigned long len = parse_email(map, size);
assert(len <= size);
sprintf(name, "%04d", ++nr);
- fd = open(name, O_WRONLY | O_CREAT | O_EXCL, 0600);
+ fd = open(name, O_WRONLY | O_CREAT | O_EXCL, 0666);
if (fd < 0) {
perror(name);
exit(1);