summaryrefslogtreecommitdiff
path: root/commit.c
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-05-08 19:37:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-05-09 03:12:36 (GMT)
commit68f95d382b51b134b138c91f94adb8d9ef2f557a (patch)
tree3dba7b85cccb8f7e4911fabcb7fa87ad98612fa3 /commit.c
parent99bf115c879af7e38ef0ca9596fc9db1d6598d5f (diff)
downloadgit-68f95d382b51b134b138c91f94adb8d9ef2f557a.zip
git-68f95d382b51b134b138c91f94adb8d9ef2f557a.tar.gz
git-68f95d382b51b134b138c91f94adb8d9ef2f557a.tar.bz2
object: add repository argument to create_object
Add a repository argument to allow the callers of create_object to be more specific about which repository to act on. This is a small mechanical change; it doesn't change the implementation to handle repositories other than the_repository yet. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> 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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/commit.c b/commit.c
index ca474a7..9106acf 100644
--- a/commit.c
+++ b/commit.c
@@ -50,7 +50,8 @@ struct commit *lookup_commit(const struct object_id *oid)
{
struct object *obj = lookup_object(oid->hash);
if (!obj)
- return create_object(oid->hash, alloc_commit_node());
+ return create_object(the_repository, oid->hash,
+ alloc_commit_node());
return object_as_type(obj, OBJ_COMMIT, 0);
}