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:
authorVicent Martí <tanoku@gmail.com>2012-03-06 04:37:56 +0400
committerVicent Martí <tanoku@gmail.com>2012-03-06 04:37:56 +0400
commit9d160ba85539bbc593369f597a07d42c2770dff4 (patch)
tree18e43d3691f5b2138e9e98e9b1dd5144ab4b5627 /src/iterator.c
parent1a48112342932e9fcd45a1ff5935f1c9c53b83d1 (diff)
diff: Fix rebase breackage
Diffstat (limited to 'src/iterator.c')
-rw-r--r--src/iterator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iterator.c b/src/iterator.c
index c026c3c09..0ce89df9e 100644
--- a/src/iterator.c
+++ b/src/iterator.c
@@ -440,7 +440,7 @@ static int workdir_iterator__update_entry(workdir_iterator *wi)
/* detect submodules */
if (S_ISDIR(wi->entry.mode) &&
- git_path_contains(&wi->path, DOT_GIT) == GIT_SUCCESS)
+ git_path_contains(&wi->path, DOT_GIT) == true)
wi->entry.mode = S_IFGITLINK;
return GIT_SUCCESS;