]> git.ipfire.org Git - thirdparty/git.git/commit - upload-pack.c
serve: use repository pointer to get config
authorJeff King <peff@peff.net>
Fri, 24 Feb 2023 06:38:10 +0000 (01:38 -0500)
committerJunio C Hamano <gitster@pobox.com>
Fri, 24 Feb 2023 17:13:29 +0000 (09:13 -0800)
commit4b4e75dd4f1dac0c25bded7466b0cc20c9649efb
tree85e687eda8d45458a6432e393840c5e672f4bf6a
parentc4716086d8653ff2761b5f8b0452c97c24e117ed
serve: use repository pointer to get config

A few of the v2 "serve" callbacks ignore their repository parameter and
read config using the_repository (either directly or implicitly by
calling wrapper functions). This isn't a bug since the server code only
handles a single main repository anyway (and indeed, if you look at the
callers, these repository parameters will always be the_repository). But
in the long run we want to get rid of the_repository, so let's take a
tiny step in that direction.

As a bonus, this silences some -Wunused-parameter warnings.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
bundle-uri.c
ls-refs.c
serve.c
upload-pack.c