summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Stefan Beller <sbeller@google.com>2018-04-11 17:21:11 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-04-12 11:38:56 +0900
commitfe6d34d863a351034cbc7c756465f84dc64007ad (patch)
tree3545f15586ffa632d42b86d4a888535cc34d4824
parentrefs: add repository argument to for_each_replace_ref (diff)
downloadtgif-fe6d34d863a351034cbc7c756465f84dc64007ad.tar.xz
replace-object: add repository argument to prepare_replace_object
Add a repository argument to allow the prepare_replace_object caller to be more specific about which repository to handle. This is a small mechanical change; it doesn't change the implementation to handle repositories other than the_repository yet. As with the previous commits, use a macro to catch callers passing a repository other than the_repository at compile time. 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>
-rw-r--r--replace_object.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/replace_object.c b/replace_object.c
index 16a95ea416..567d9da708 100644
--- a/replace_object.c
+++ b/replace_object.c
@@ -31,7 +31,9 @@ static int register_replace_ref(const char *refname,
return 0;
}
-static void prepare_replace_object(void)
+#define prepare_replace_object(r) \
+ prepare_replace_object_##r()
+static void prepare_replace_object_the_repository(void)
{
if (the_repository->objects->replace_map)
return;
@@ -58,7 +60,7 @@ const struct object_id *do_lookup_replace_object(const struct object_id *oid)
int depth = MAXREPLACEDEPTH;
const struct object_id *cur = oid;
- prepare_replace_object();
+ prepare_replace_object(the_repository);
/* Try to recursively replace the object */
while (depth-- > 0) {