mirror of
https://git.proxmox.com/git/libgit2
synced 2025-06-23 03:19:03 +00:00
Rename function to __ prefix
This commit is contained in:
parent
3f0d0c85d0
commit
cb53669e14
@ -242,7 +242,7 @@ static unsigned int index_merge_mode(
|
||||
return index_create_mode(mode);
|
||||
}
|
||||
|
||||
void git_index_set_ignore_case(git_index *index, bool ignore_case)
|
||||
void git_index__set_ignore_case(git_index *index, bool ignore_case)
|
||||
{
|
||||
index->ignore_case = ignore_case;
|
||||
|
||||
@ -390,7 +390,7 @@ int git_index_set_caps(git_index *index, unsigned int caps)
|
||||
}
|
||||
|
||||
if (old_ignore_case != index->ignore_case) {
|
||||
git_index_set_ignore_case(index, index->ignore_case);
|
||||
git_index__set_ignore_case(index, index->ignore_case);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -48,7 +48,7 @@ extern size_t git_index__prefix_position(git_index *index, const char *path);
|
||||
extern int git_index_entry__cmp(const void *a, const void *b);
|
||||
extern int git_index_entry__cmp_icase(const void *a, const void *b);
|
||||
|
||||
extern void git_index_set_ignore_case(git_index *index, bool ignore_case);
|
||||
extern void git_index__set_ignore_case(git_index *index, bool ignore_case);
|
||||
|
||||
extern int git_index_read_tree_match(
|
||||
git_index *index, git_tree *tree, git_strarray *strspec);
|
||||
|
@ -582,19 +582,19 @@ int git_tree__write_index(
|
||||
}
|
||||
|
||||
/* The tree cache didn't help us; we'll have to write
|
||||
* out a tree. If the index is ignore_case, we'll must
|
||||
* out a tree. If the index is ignore_case, we must
|
||||
* make it case-sensitive for the duration of the tree-write
|
||||
* operation. */
|
||||
|
||||
if (index->ignore_case) {
|
||||
old_ignore_case = true;
|
||||
git_index_set_ignore_case(index, false);
|
||||
git_index__set_ignore_case(index, false);
|
||||
}
|
||||
|
||||
ret = write_tree(oid, repo, index, "", 0);
|
||||
|
||||
if (old_ignore_case)
|
||||
git_index_set_ignore_case(index, true);
|
||||
git_index__set_ignore_case(index, true);
|
||||
|
||||
return ret < 0 ? ret : 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user