mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
serve: mark has_capability() as static
The has_capability() function introduced ined10cb952d
(serve: introduce git-serve, 2018-03-15) has never been used anywhere except serve.c, so let's mark it as static. It was later changed from "extern" in554544276a
(*.[ch]: remove extern from function declarations using spatch, 2019-04-29), but we could have simply marked it as "static" instead. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e5a14ddd2d
commit
eacf36a4d1
4
serve.c
4
serve.c
@ -156,8 +156,8 @@ static int is_command(const char *key, struct protocol_capability **command)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int has_capability(const struct strvec *keys, const char *capability,
|
||||
const char **value)
|
||||
static int has_capability(const struct strvec *keys, const char *capability,
|
||||
const char **value)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < keys->nr; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user