diff options
author | Junio C Hamano <junkio@cox.net> | 2005-07-06 01:11:52 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-06 10:39:58 -0700 |
commit | b2cb94254be7bf8b44c851897dd29a00ce654e3c (patch) | |
tree | 350b5b896310eb41ce6786176727a1bc22ef2350 /clone-pack.c | |
parent | ff9206e72c71aa2e51c7cbee911f47b5838a5845 (diff) | |
download | git-b2cb94254be7bf8b44c851897dd29a00ce654e3c.tar.gz git-b2cb94254be7bf8b44c851897dd29a00ce654e3c.tar.xz |
[PATCH] clone-pack.c:write_one_ref() - Create leading directories.
The function write_one_ref() is passed the list of refs received
from the other end, which was obtained by directory traversal
under $GIT_DIR/refs; this can contain paths other than what
git-init-db prepares and would fail to clone when there is
such.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'clone-pack.c')
-rw-r--r-- | clone-pack.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clone-pack.c b/clone-pack.c index 0337ceccc..b9b8437dd 100644 --- a/clone-pack.c +++ b/clone-pack.c @@ -68,9 +68,12 @@ static int is_master(struct ref *ref) static void write_one_ref(struct ref *ref) { char *path = git_path(ref->name); - int fd = open(path, O_CREAT | O_EXCL | O_WRONLY, 0666); + int fd; char *hex; + if (safe_create_leading_directories(path)) + die("unable to create leading directory for %s", ref->name); + fd = open(path, O_CREAT | O_EXCL | O_WRONLY, 0666); if (fd < 0) die("unable to create ref %s", ref->name); hex = sha1_to_hex(ref->sha1); |