summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4629795)
raw | patch | inline | side by side (parent: 4629795)
author | Junio C Hamano <junkio@cox.net> | |
Sun, 22 Apr 2007 18:49:35 +0000 (11:49 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sun, 22 Apr 2007 18:49:35 +0000 (11:49 -0700) |
mkstemp() often creates the file in 0600 which means the
resulting packfile is not readable by anybody other than the
repository owner. Force 0644 for now, even though this is not
strictly correct.
Signed-off-by: Junio C Hamano <junkio@cox.net>
resulting packfile is not readable by anybody other than the
repository owner. Force 0644 for now, even though this is not
strictly correct.
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-pack-objects.c | patch | blob | history |
diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c
index c72e07a2bb73b74e6be9a038fae4eafd0b88e2b2..840d4d697a74901599bf9d9222375811c6a0e668 100644 (file)
--- a/builtin-pack-objects.c
+++ b/builtin-pack-objects.c
write_index_file(last_obj_offset, object_list_sha1);
snprintf(tmpname, sizeof(tmpname), "%s-%s.pack",
base_name, sha1_to_hex(object_list_sha1));
+ if (chmod(pack_tmp_name, 0644))
+ die("unable to make temporary pack file readable: %s",
+ strerror(errno));
if (rename(pack_tmp_name, tmpname))
die("unable to rename temporary pack file: %s",
strerror(errno));
snprintf(tmpname, sizeof(tmpname), "%s-%s.idx",
base_name, sha1_to_hex(object_list_sha1));
+ if (chmod(idx_tmp_name, 0644))
+ die("unable to make temporary index file readable: %s",
+ strerror(errno));
if (rename(idx_tmp_name, tmpname))
die("unable to rename temporary index file: %s",
strerror(errno));