diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-04-03 21:38:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-04-03 21:38:38 +0200 |
commit | 8ba87adad637b402fb309754e213ec40b74e4f18 (patch) | |
tree | ca8a9e5b21b53890ae499ad60f636e0882c93c3e /dir.c | |
parent | Merge branch 'cn/fetch-prune-overlapping-destination' (diff) | |
parent | tests: don't rely on strerror text when testing rmdir failure (diff) | |
download | git-8ba87adad637b402fb309754e213ec40b74e4f18.tar.xz git-8ba87adad637b402fb309754e213ec40b74e4f18.zip |
Merge branch 'cb/aix'
* cb/aix:
tests: don't rely on strerror text when testing rmdir failure
dir.c: make git_fnmatch() not inline
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -54,9 +54,9 @@ int fnmatch_icase(const char *pattern, const char *string, int flags) NULL); } -inline int git_fnmatch(const struct pathspec_item *item, - const char *pattern, const char *string, - int prefix) +int git_fnmatch(const struct pathspec_item *item, + const char *pattern, const char *string, + int prefix) { if (prefix > 0) { if (ps_strncmp(item, pattern, string, prefix)) |