From f8d839ad992d92e1e31d7a557c198371d1fb7692 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 1 Oct 2005 11:58:43 -0700 Subject: Honor user's umask. 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 --- mailsplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mailsplit.c') diff --git a/mailsplit.c b/mailsplit.c index a3238c20d..7afea1aac 100644 --- a/mailsplit.c +++ b/mailsplit.c @@ -128,7 +128,7 @@ int main(int argc, char **argv) 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); -- cgit v1.2.1