blob: abff8c9551a4bd1e8c636c062bae150a8850fc7a [file] [log] [blame]
From 85eb0209111ee58ce142c2a3bbfe721d1a0bef53 Mon Sep 17 00:00:00 2001
From: Jeff King <peff@peff.net>
Date: Wed, 2 May 2018 16:37:09 -0400
Subject: index-pack: make fsck error message more specific
commit db5a58c1bda5b20169b9958af1e8b05ddd178b01 upstream.
If fsck reports an error, we say only "Error in object".
This isn't quite as bad as it might seem, since the fsck
code would have dumped some errors to stderr already. But it
might help to give a little more context. The earlier output
would not have even mentioned "fsck", and that may be a clue
that the "fsck.*" or "*.fsckObjects" config may be relevant.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
---
builtin/index-pack.c | 2 +-
builtin/unpack-objects.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/builtin/index-pack.c b/builtin/index-pack.c
index 0a27bab11b..04fa6bed95 100644
--- a/builtin/index-pack.c
+++ b/builtin/index-pack.c
@@ -845,7 +845,7 @@ static void sha1_object(const void *data, struct object_entry *obj_entry,
die(_("invalid %s"), typename(type));
if (do_fsck_object &&
fsck_object(obj, buf, size, &fsck_options))
- die(_("Error in object"));
+ die(_("fsck error in packed object"));
if (fsck_walk(obj, NULL, &fsck_options))
die(_("Not all child objects of %s are reachable"), oid_to_hex(&obj->oid));
diff --git a/builtin/unpack-objects.c b/builtin/unpack-objects.c
index 4532aa0831..285a434b28 100644
--- a/builtin/unpack-objects.c
+++ b/builtin/unpack-objects.c
@@ -208,7 +208,7 @@ static int check_object(struct object *obj, int type, void *data, struct fsck_op
if (!obj_buf)
die("Whoops! Cannot find object '%s'", oid_to_hex(&obj->oid));
if (fsck_object(obj, obj_buf->buffer, obj_buf->size, &fsck_options))
- die("Error in object");
+ die("fsck error in packed object");
fsck_options.walk = check_object;
if (fsck_walk(obj, NULL, &fsck_options))
die("Error on reachable objects of %s", oid_to_hex(&obj->oid));
--
2.17.0.921.gf22659ad46