summaryrefslogtreecommitdiff
path: root/commit.c
diff options
context:
space:
mode:
authorLibravatar Stefan Beller <sbeller@google.com>2018-06-28 18:22:22 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-06-29 10:43:40 -0700
commit1f6c72fe55fded90cadcefffe5bd980a6f896579 (patch)
tree6477d6c57868564dca825fab113e47ad914d3a9f /commit.c
parentcommit.c: allow lookup_commit_reference_gently to handle arbitrary repositories (diff)
downloadtgif-1f6c72fe55fded90cadcefffe5bd980a6f896579.tar.xz
commit.c: allow lookup_commit_reference to handle arbitrary repositories
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.c')
-rw-r--r--commit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commit.c b/commit.c
index 08b4602f43..b88ced5b02 100644
--- a/commit.c
+++ b/commit.c
@@ -36,9 +36,9 @@ struct commit *lookup_commit_reference_gently(struct repository *r,
return object_as_type(r, obj, OBJ_COMMIT, quiet);
}
-struct commit *lookup_commit_reference_the_repository(const struct object_id *oid)
+struct commit *lookup_commit_reference(struct repository *r, const struct object_id *oid)
{
- return lookup_commit_reference_gently(the_repository, oid, 0);
+ return lookup_commit_reference_gently(r, oid, 0);
}
struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name)