summaryrefslogtreecommitdiff
path: root/unpack-trees.c
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-03-28 22:35:28 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-03-29 16:44:50 (GMT)
commitf793b895fd752e37301702eaff948a40e7c0a4b8 (patch)
tree423cfe2800289f3f40a595500f50aabd267b1c2e /unpack-trees.c
parent6856077ab063f16b4ccacff971c3ebb185935465 (diff)
downloadgit-f793b895fd752e37301702eaff948a40e7c0a4b8.zip
git-f793b895fd752e37301702eaff948a40e7c0a4b8.tar.gz
git-f793b895fd752e37301702eaff948a40e7c0a4b8.tar.bz2
submodule-config: allow submodule_free to handle arbitrary repositories
At some point we may want to rename the function so that it describes what it actually does as 'submodule_free' doesn't quite describe that this clears a repository's submodule cache. But that's beyond the scope of this series. While at it remove the extern key word from its declaration. Signed-off-by: Stefan Beller <sbeller@google.com> Reviewed-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'unpack-trees.c')
-rw-r--r--unpack-trees.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unpack-trees.c b/unpack-trees.c
index e6a15bb..3a6a28e 100644
--- a/unpack-trees.c
+++ b/unpack-trees.c
@@ -290,7 +290,7 @@ static void load_gitmodules_file(struct index_state *index,
if (!state && ce->ce_flags & CE_WT_REMOVE) {
repo_read_gitmodules(the_repository);
} else if (state && (ce->ce_flags & CE_UPDATE)) {
- submodule_free();
+ submodule_free(the_repository);
checkout_entry(ce, state, NULL);
repo_read_gitmodules(the_repository);
}