Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kelley <phkelley@hotmail.com>2013-03-02 01:38:13 +0400
committerPhilip Kelley <phkelley@hotmail.com>2013-03-02 01:38:13 +0400
commitcb53669e14f9a29b797d108c50d04566f82ab58f (patch)
tree52228cef32a2538d3b75dc8e83431d5badd082fb /src/tree.c
parent3f0d0c85d06f0d5ff9ba469c6ab523bfddcc710b (diff)
Rename function to __ prefix
Diffstat (limited to 'src/tree.c')
-rw-r--r--src/tree.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tree.c b/src/tree.c
index decd37e71..11123a18a 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -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;
}