diff options
author | Nicolas Pitre <nico@cam.org> | 2006-12-20 13:34:05 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-20 10:46:34 -0800 |
commit | 08a19d873c16aa6127bf4c40cf99a9dd19558a0c (patch) | |
tree | 8f2e561d52364489ce05b513b754a9abb8abce46 /sha1_file.c | |
parent | 85023577a8f4b540aa64aa37f6f44578c0c305a3 (diff) | |
download | git-08a19d873c16aa6127bf4c40cf99a9dd19558a0c.tar.gz git-08a19d873c16aa6127bf4c40cf99a9dd19558a0c.tar.xz |
clarify some error messages wrt unknown object types
If ever new object types are added for future extensions then better
have current git version report them as "unknown" instead of
"corrupted".
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sha1_file.c b/sha1_file.c index 63f416bb5..1c4df5b73 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1013,7 +1013,7 @@ void packed_object_info_detail(struct packed_git *p, for (;;) { switch (kind) { default: - die("corrupted pack file %s containing object of kind %d", + die("pack %s contains unknown object type %d", p->pack_name, kind); case OBJ_COMMIT: case OBJ_TREE: @@ -1063,7 +1063,7 @@ static int packed_object_info(struct packed_git *p, unsigned long offset, strcpy(type, type_names[kind]); break; default: - die("corrupted pack file %s containing object of kind %d", + die("pack %s contains unknown object type %d", p->pack_name, kind); } if (sizep) |