diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-01-14 14:57:08 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-01-15 11:05:48 -0800 |
commit | 667f7eb2eac5b5b369dc2a3f444e6057563e683a (patch) | |
tree | f91279312d5a1320a34628df0c72606333a6145e | |
parent | revision.c: make save_parents() and free_saved_parents() static (diff) | |
download | tgif-667f7eb2eac5b5b369dc2a3f444e6057563e683a.tar.xz |
urlmatch.c: make match_urls() static
No external callers exist.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | urlmatch.c | 6 | ||||
-rw-r--r-- | urlmatch.h | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/urlmatch.c b/urlmatch.c index 618d216491..132d342bc1 100644 --- a/urlmatch.c +++ b/urlmatch.c @@ -412,9 +412,9 @@ static size_t url_match_prefix(const char *url, return 0; } -int match_urls(const struct url_info *url, - const struct url_info *url_prefix, - int *exactusermatch) +static int match_urls(const struct url_info *url, + const struct url_info *url_prefix, + int *exactusermatch) { /* * url_prefix matches url if the scheme, host and port of url_prefix diff --git a/urlmatch.h b/urlmatch.h index b461dfd3df..528862adc5 100644 --- a/urlmatch.h +++ b/urlmatch.h @@ -31,7 +31,6 @@ struct url_info { }; extern char *url_normalize(const char *, struct url_info *); -extern int match_urls(const struct url_info *url, const struct url_info *url_prefix, int *exactusermatch); struct urlmatch_item { size_t matched_len; |