Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
4df6ddaa
Commit
4df6ddaa
authored
Mar 31, 2016
by
Edward Thomson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iterator: use correct search function
parent
74ab5f2c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
src/iterator.c
+1
-1
No files found.
src/iterator.c
View file @
4df6ddaa
...
...
@@ -34,7 +34,7 @@ static void iterator_set_ignore_case(git_iterator *iter, bool ignore_case)
iter
->
strcomp
=
ignore_case
?
git__strcasecmp
:
git__strcmp
;
iter
->
strncomp
=
ignore_case
?
git__strncasecmp
:
git__strncmp
;
iter
->
prefixcomp
=
ignore_case
?
git__prefixcmp_icase
:
git__prefixcmp
;
iter
->
entry_srch
=
ignore_case
?
git_index_entry_
srch
:
git_index_entry_i
srch
;
iter
->
entry_srch
=
ignore_case
?
git_index_entry_
isrch
:
git_index_entry_
srch
;
git_vector_set_cmp
(
&
iter
->
pathlist
,
(
git_vector_cmp
)
iter
->
strcomp
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment