diff options
author | Brandon Williams <bmwill@google.com> | 2018-05-17 15:51:47 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-18 08:13:10 +0900 |
commit | e808656c46e9d0e2e446b304a6f4d1f7dd0b25b5 (patch) | |
tree | e95bafa8c8f243feb48a3ab0de6fb2cc295aa8c6 | |
parent | shallow: add repository argument to is_repository_shallow (diff) | |
download | tgif-e808656c46e9d0e2e446b304a6f4d1f7dd0b25b5.tar.xz |
commit: convert commit_graft_pos() to handle arbitrary repositories
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | commit.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -104,11 +104,10 @@ static const unsigned char *commit_graft_sha1_access(size_t index, void *table) return commit_graft_table[index]->oid.hash; } -#define commit_graft_pos(r, s) commit_graft_pos_##r(s) -static int commit_graft_pos_the_repository(const unsigned char *sha1) +static int commit_graft_pos(struct repository *r, const unsigned char *sha1) { - return sha1_pos(sha1, the_repository->parsed_objects->grafts, - the_repository->parsed_objects->grafts_nr, + return sha1_pos(sha1, r->parsed_objects->grafts, + r->parsed_objects->grafts_nr, commit_graft_sha1_access); } |