summaryrefslogtreecommitdiff
path: root/apply.c
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2019-05-24 12:23:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-05-28 19:43:42 (GMT)
commitd4c0a3ac78cf2fc16c144bf720d1451fcd1e267d (patch)
treec5c1048737c424a7ed9b017a3b48d29b65ecbaad /apply.c
parentcfd635c7428dfca5b45d8d45fdc1311e751d4fe2 (diff)
downloadgit-d4c0a3ac78cf2fc16c144bf720d1451fcd1e267d.zip
git-d4c0a3ac78cf2fc16c144bf720d1451fcd1e267d.tar.gz
git-d4c0a3ac78cf2fc16c144bf720d1451fcd1e267d.tar.bz2
fill_stat_cache_info(): prepare for an fsmonitor fix
We will need to pass down the `struct index_state` to `mark_fsmonitor_valid()` for an upcoming bug fix, and this here function calls that there function, so we need to extend the signature of `fill_stat_cache_info()` first. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'apply.c')
-rw-r--r--apply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apply.c b/apply.c
index f15afa9..4992eca 100644
--- a/apply.c
+++ b/apply.c
@@ -4310,7 +4310,7 @@ static int add_index_file(struct apply_state *state,
"created file '%s'"),
path);
}
- fill_stat_cache_info(ce, &st);
+ fill_stat_cache_info(state->repo->index, ce, &st);
}
if (write_object_file(buf, size, blob_type, &ce->oid) < 0) {
discard_cache_entry(ce);