summaryrefslogtreecommitdiff
path: root/serve.c
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-08-05 01:25:34 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-08-05 15:59:36 (GMT)
commiteacf36a4d1d6e83418c02f61e0c418d049000240 (patch)
treecb7ed11f3135db146668e911e9512766120a4bdf /serve.c
parente5a14ddd2d93da4d951fd63d4f78fe2410debe68 (diff)
downloadgit-eacf36a4d1d6e83418c02f61e0c418d049000240.zip
git-eacf36a4d1d6e83418c02f61e0c418d049000240.tar.gz
git-eacf36a4d1d6e83418c02f61e0c418d049000240.tar.bz2
serve: mark has_capability() as static
The has_capability() function introduced in ed10cb952d3 (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" in 554544276a6 (*.[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>
Diffstat (limited to 'serve.c')
-rw-r--r--serve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/serve.c b/serve.c
index f11c0e0..7bf5f23 100644
--- a/serve.c
+++ b/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++) {