aboutsummaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2016-04-22 19:25:15 +0700
committerJunio C Hamano <gitster@pobox.com>2016-04-22 14:07:45 -0700
commit423b592a06876a90f584884d4381dcf4d41f6b3b (patch)
treea59f3704bae2c39b5161c0fc33b23940fcbd57d6 /dir.c
parent6a6636270fbaf74609cd3e1bd207dd2c420d640a (diff)
downloadgit-423b592a06876a90f584884d4381dcf4d41f6b3b.tar.gz
git-423b592a06876a90f584884d4381dcf4d41f6b3b.tar.xz
dir.c: remove dead function fnmatch_icase()
It was largely replaced by fnmatch_icase_mem() and its last use was in 84b8b5d (remove match_pathspec() in favor of match_pathspec_depth() - 2013-07-14). Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/dir.c b/dir.c
index 996653b0d..656f272ad 100644
--- a/dir.c
+++ b/dir.c
@@ -64,13 +64,6 @@ int strncmp_icase(const char *a, const char *b, size_t count)
return ignore_case ? strncasecmp(a, b, count) : strncmp(a, b, count);
}
-int fnmatch_icase(const char *pattern, const char *string, int flags)
-{
- return wildmatch(pattern, string,
- flags | (ignore_case ? WM_CASEFOLD : 0),
- NULL);
-}
-
int git_fnmatch(const struct pathspec_item *item,
const char *pattern, const char *string,
int prefix)