summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9de4875)
raw | patch | inline | side by side (parent: 9de4875)
author | Jan Harkes <jaharkes@cs.cmu.edu> | |
Sat, 25 Jun 2005 18:23:36 +0000 (14:23 -0400) | ||
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | |
Sat, 25 Jun 2005 20:41:10 +0000 (13:41 -0700) |
git-write-tree failed when referenced objects only exist in the
GIT_ALTERNATE_OBJECT_DIRECTORIES path.
Signed-off-by: Jan Harkes <jaharkes@cs.cmu.edu>
Acked-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
GIT_ALTERNATE_OBJECT_DIRECTORIES path.
Signed-off-by: Jan Harkes <jaharkes@cs.cmu.edu>
Acked-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
write-tree.c | patch | blob | history |
diff --git a/write-tree.c b/write-tree.c
index b8bf8831e09facf19bfb9673e26a885ea249285a..a794ea15b89ece14570bb8bf3ed0b42ab65cd413 100644 (file)
--- a/write-tree.c
+++ b/write-tree.c
static int check_valid_sha1(unsigned char *sha1)
{
- char *filename = sha1_file_name(sha1);
int ret;
/* If we were anal, we'd check that the sha1 of the contents actually matches */
- ret = access(filename, R_OK);
- if (ret)
- perror(filename);
- return ret;
+ ret = has_sha1_file(sha1);
+ if (ret == 0)
+ perror(sha1_file_name(sha1));
+ return ret ? 0 : -1;
}
static int write_tree(struct cache_entry **cachep, int maxentries, const char *base, int baselen, unsigned char *returnsha1)