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:
authorRussell Belfer <rb@github.com>2013-09-12 03:38:33 +0400
committerRussell Belfer <rb@github.com>2013-09-17 20:31:45 +0400
commit4b11f25a4fbb6952284e037a70e2d61fde841ab6 (patch)
tree41929ce26c3c41183b3fc221927afb67444eadf2 /src/checkout.c
parent40cb40fab93281c808255d980bbe81a18a4d9e9a (diff)
Add ident filter
This adds the ident filter (that knows how to replace $Id$) and tweaks the filter APIs and code so that git_filter_source objects actually have the updated OID of the object being filtered when it is a known value.
Diffstat (limited to 'src/checkout.c')
-rw-r--r--src/checkout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checkout.c b/src/checkout.c
index 1def58b0a..7e79c9b5e 100644
--- a/src/checkout.c
+++ b/src/checkout.c
@@ -718,7 +718,7 @@ static int blob_content_to_file(
if (!opts->disable_filters && !git_blob_is_binary(blob))
error = git_filter_list_load(
- &fl, git_blob_owner(blob), path, GIT_FILTER_TO_WORKTREE);
+ &fl, git_blob_owner(blob), blob, path, GIT_FILTER_TO_WORKTREE);
if (!error)
error = git_filter_list_apply_to_blob(&out, fl, blob);