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:
authorEdward Thomson <ethomson@microsoft.com>2015-02-19 19:09:54 +0300
committerEdward Thomson <ethomson@microsoft.com>2015-02-19 19:09:54 +0300
commit795eaccd667ce24c290b6211ca0c6a84f84e7c2b (patch)
treebdef91425a91ee616f3358630ee9f2a25ede27fd /tests/filter
parentd4cf167515d3ed7b27c1358fc2e19b9caf66e8ad (diff)
git_filter_opt_t -> git_filter_flag_t
For consistency with the rest of the library, where an opt is an options *structure*.
Diffstat (limited to 'tests/filter')
-rw-r--r--tests/filter/crlf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/filter/crlf.c b/tests/filter/crlf.c
index a31dac965..406d3b6b0 100644
--- a/tests/filter/crlf.c
+++ b/tests/filter/crlf.c
@@ -123,7 +123,7 @@ void test_filter_crlf__with_safecrlf_and_unsafe_allowed(void)
cl_repo_set_bool(g_repo, "core.safecrlf", true);
cl_git_pass(git_filter_list_new(
- &fl, g_repo, GIT_FILTER_TO_ODB, GIT_FILTER_OPT_ALLOW_UNSAFE));
+ &fl, g_repo, GIT_FILTER_TO_ODB, GIT_FILTER_ALLOW_UNSAFE));
crlf = git_filter_lookup(GIT_FILTER_CRLF);
cl_assert(crlf != NULL);