diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:28:13 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:28:13 -0700 |
commit | a0460132a740d8ff0c08dcbd54520f1b795298b9 (patch) | |
tree | fd6c2f9cca2cb3b880cd45f359a35ddb60dfb551 /builtin | |
parent | Merge branch 'bc/blame-crlf-test' (diff) | |
parent | index-pack: distinguish missing objects from type errors (diff) | |
download | tgif-a0460132a740d8ff0c08dcbd54520f1b795298b9.tar.xz |
Merge branch 'jk/index-pack-report-missing'
* jk/index-pack-report-missing:
index-pack: distinguish missing objects from type errors
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/index-pack.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/builtin/index-pack.c b/builtin/index-pack.c index 87d8dd81cc..18f57de58b 100644 --- a/builtin/index-pack.c +++ b/builtin/index-pack.c @@ -207,8 +207,13 @@ static unsigned check_object(struct object *obj) if (!(obj->flags & FLAG_CHECKED)) { unsigned long size; int type = sha1_object_info(obj->sha1, &size); - if (type != obj->type || type <= 0) - die(_("object of unexpected type")); + if (type <= 0) + die(_("did not receive expected object %s"), + sha1_to_hex(obj->sha1)); + if (type != obj->type) + die(_("object %s: expected type %s, found %s"), + sha1_to_hex(obj->sha1), + typename(obj->type), typename(type)); obj->flags |= FLAG_CHECKED; return 1; } |