summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-25 18:43:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-25 18:43:58 (GMT)
commit81bd9b100064094bf6db05d85853284e9b15376a (patch)
treef0ab7563fa4e093c7cb17bfa952f6d3f1bfd708b /sha1_file.c
parent73505ef7a5f5da4f31a86a12c1ab47ffcebdb73a (diff)
parentd6c8a05bd58be82165be54f01c861c0fae28b8c4 (diff)
downloadgit-81bd9b100064094bf6db05d85853284e9b15376a.zip
git-81bd9b100064094bf6db05d85853284e9b15376a.tar.gz
git-81bd9b100064094bf6db05d85853284e9b15376a.tar.bz2
Merge branch 'jk/report-fail-to-read-objects-better' into maint
Reworded the error message given upon a failure to open an existing loose object file due to e.g. permission issues; it was reported as the object being corrupt, but that is not quite true. * jk/report-fail-to-read-objects-better: open_sha1_file: report "most interesting" errno
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 3e9f55f..34d527f 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1437,19 +1437,23 @@ static int open_sha1_file(const unsigned char *sha1)
{
int fd;
struct alternate_object_database *alt;
+ int most_interesting_errno;
fd = git_open_noatime(sha1_file_name(sha1));
if (fd >= 0)
return fd;
+ most_interesting_errno = errno;
prepare_alt_odb();
- errno = ENOENT;
for (alt = alt_odb_list; alt; alt = alt->next) {
fill_sha1_path(alt->name, sha1);
fd = git_open_noatime(alt->base);
if (fd >= 0)
return fd;
+ if (most_interesting_errno == ENOENT)
+ most_interesting_errno = errno;
}
+ errno = most_interesting_errno;
return -1;
}