From 0e2dd29ba57580d3d81c62caa7ee4c3ca0a33829 Mon Sep 17 00:00:00 2001 From: authmillenon Date: Tue, 4 Sep 2012 12:07:51 +0200 Subject: [PATCH] Fix logical error in git_index_set_caps --- src/index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.c b/src/index.c index a1042b723..3a92c360b 100644 --- a/src/index.c +++ b/src/index.c @@ -247,7 +247,7 @@ int git_index_set_caps(git_index *index, unsigned int caps) if (git_config_get_bool(&val, cfg, "core.filemode") == 0) index->distrust_filemode = (val == 0); if (git_config_get_bool(&val, cfg, "core.symlinks") == 0) - index->no_symlinks = (val != 0); + index->no_symlinks = (val == 0); } else { index->ignore_case = ((caps & GIT_INDEXCAP_IGNORE_CASE) != 0);