serve.[ch]: don't pass "struct strvec *keys" to commands
The serve.c API added in ed10cb952d
(serve: introduce git-serve,
2018-03-15) was passing in the raw capabilities "keys", but nothing
downstream of it ever used them.
Let's remove that code because it's not needed. If we do end up
needing to pass information about the advertisement in the future
it'll make more sense to have serve.c parse the capabilities keys and
pass the result of its parsing, rather than expecting expecting its
API users to parse the same keys again.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
85baaed475
commit
28a592e4f4
@ -138,8 +138,7 @@ static int ls_refs_config(const char *var, const char *value, void *data)
|
||||
return parse_hide_refs_config(var, value, "uploadpack");
|
||||
}
|
||||
|
||||
int ls_refs(struct repository *r, struct strvec *keys,
|
||||
struct packet_reader *request)
|
||||
int ls_refs(struct repository *r, struct packet_reader *request)
|
||||
{
|
||||
struct ls_refs_data data;
|
||||
|
||||
|
Reference in New Issue
Block a user