Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/blob.c
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2005-05-21 00:59:17 +0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-21 02:41:45 +0400
commitd1af002dc608be3213ba18df1a99ced0ab42e6d6 (patch)
tree191c45603eb3bc4aca09df7721bef8c740786ed5 /blob.c
parent91d7b8afc2dc8bacde2012ad076cd8d0c4d36697 (diff)
[PATCH] delta check
This adds knowledge of delta objects to fsck-cache and various object parsing code. A new switch to git-fsck-cache is provided to display the maximum delta depth found in a repository. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'blob.c')
-rw-r--r--blob.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/blob.c b/blob.c
index 280f524157..c800cd3905 100644
--- a/blob.c
+++ b/blob.c
@@ -14,6 +14,8 @@ struct blob *lookup_blob(unsigned char *sha1)
ret->object.type = blob_type;
return ret;
}
+ if (!obj->type)
+ obj->type = blob_type;
if (obj->type != blob_type) {
error("Object %s is a %s, not a blob",
sha1_to_hex(sha1), obj->type);