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:
authorBen Straub <bstraub@github.com>2012-07-18 06:57:37 +0400
committerBen Straub <bstraub@github.com>2012-07-18 06:57:37 +0400
commit8651c10f1ed5d42ef0ad6e9e9f654799b4ffb39c (patch)
tree4da027729959be251b3cb72d950aca0aaa9c4f37 /src/crlf.c
parent3e026f1b4597c24848487422eb566a9434b5821d (diff)
Checkout: obey core.symlinks.
Diffstat (limited to 'src/crlf.c')
-rw-r--r--src/crlf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crlf.c b/src/crlf.c
index 888d86c36..f68938e61 100644
--- a/src/crlf.c
+++ b/src/crlf.c
@@ -230,7 +230,7 @@ static int find_and_add_filter(git_vector *filters, git_repository *repo, const
static int crlf_apply_to_workdir(git_filter *self, git_buf *dest, const git_buf *source)
{
/* TODO */
- return 0;
+ return -1;
}
int git_filter_add__crlf_to_odb(git_vector *filters, git_repository *repo, const char *path)