Signed-off-by: Stefan Beller <[email protected]>
---
commit.c | 10 +++++-----
commit.h | 3 +--
2 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/commit.c b/commit.c
index a9660f7401..67d329e13c 100644
--- a/commit.c
+++ b/commit.c
@@ -334,7 +334,7 @@ const void *detach_commit_buffer(struct repository *r,
struct commit *commit, un
return ret;
}
-int parse_commit_buffer_the_repository(struct commit *item, const void
*buffer, unsigned long size)
+int parse_commit_buffer(struct repository *r, struct commit *item, const void
*buffer, unsigned long size)
{
const char *tail = buffer;
const char *bufptr = buffer;
@@ -354,11 +354,11 @@ int parse_commit_buffer_the_repository(struct commit
*item, const void *buffer,
if (get_sha1_hex(bufptr + 5, parent.hash) < 0)
return error("bad tree pointer in commit %s",
oid_to_hex(&item->object.oid));
- item->tree = lookup_tree(the_repository, &parent);
+ item->tree = lookup_tree(r, &parent);
bufptr += tree_entry_len + 1; /* "tree " + "hex sha1" + "\n" */
pptr = &item->parents;
- graft = lookup_commit_graft(the_repository, &item->object.oid);
+ graft = lookup_commit_graft(r, &item->object.oid);
while (bufptr + parent_entry_len < tail && !memcmp(bufptr, "parent ",
7)) {
struct commit *new_parent;
@@ -373,7 +373,7 @@ int parse_commit_buffer_the_repository(struct commit *item,
const void *buffer,
*/
if (graft && (graft->nr_parent < 0 || grafts_replace_parents))
continue;
- new_parent = lookup_commit(the_repository, &parent);
+ new_parent = lookup_commit(r, &parent);
if (new_parent)
pptr = &commit_list_insert(new_parent, pptr)->next;
}
@@ -381,7 +381,7 @@ int parse_commit_buffer_the_repository(struct commit *item,
const void *buffer,
int i;
struct commit *new_parent;
for (i = 0; i < graft->nr_parent; i++) {
- new_parent = lookup_commit(the_repository,
+ new_parent = lookup_commit(r,
&graft->parent[i]);
if (!new_parent)
continue;
diff --git a/commit.h b/commit.h
index b53053400d..8532ddd69c 100644
--- a/commit.h
+++ b/commit.h
@@ -64,8 +64,7 @@ struct commit *lookup_commit_reference_by_name(const char
*name);
*/
struct commit *lookup_commit_or_die(const struct object_id *oid, const char
*ref_name);
-#define parse_commit_buffer(r, i, b, s) parse_commit_buffer_##r(i, b, s)
-int parse_commit_buffer_the_repository(struct commit *item, const void
*buffer, unsigned long size);
+int parse_commit_buffer(struct repository *r, struct commit *item, const void
*buffer, unsigned long size);
#define parse_commit_gently(r, i, q) parse_commit_gently_##r(i, q)
int parse_commit_gently_the_repository(struct commit *item, int
quiet_on_missing);
#define parse_commit(r, i) parse_commit_##r(i)
--
2.15.1.433.g936d1b9894.dirty