summaryrefslogtreecommitdiff
path: root/upload-pack.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2021-04-13 07:16:36 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-04-13 20:18:46 (GMT)
commit45a187cc34b5016842b91ef14b59e40505afff46 (patch)
treec5f51faea86455cff77a1d4652bbb9a225292907 /upload-pack.c
parentfcc07e980b344a813b47358d0aa823d07c7ac744 (diff)
downloadgit-45a187cc34b5016842b91ef14b59e40505afff46.zip
git-45a187cc34b5016842b91ef14b59e40505afff46.tar.gz
git-45a187cc34b5016842b91ef14b59e40505afff46.tar.bz2
lookup_unknown_object(): take a repository argument
All of the other lookup_foo() functions take a repository argument, but lookup_unknown_object() was never converted, and it uses the_repository internally. Let's fix that. We could leave a wrapper that uses the_repository, but there aren't that many calls, so we'll just convert them all. I looked briefly at each site to see if we had a repository struct (besides the_repository) we could pass, but none of them do (so this conversion to pass the_repository is a pure noop in each case, though it does take us one step closer to eventually getting rid of the_repository). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'upload-pack.c')
-rw-r--r--upload-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/upload-pack.c b/upload-pack.c
index e19583a..5c1cd19 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -1153,7 +1153,7 @@ static void receive_needs(struct upload_pack_data *data,
static int mark_our_ref(const char *refname, const char *refname_full,
const struct object_id *oid)
{
- struct object *o = lookup_unknown_object(oid);
+ struct object *o = lookup_unknown_object(the_repository, oid);
if (ref_is_hidden(refname, refname_full)) {
o->flags |= HIDDEN_REF;