diff options
| author | Derrick Stolee <dstolee@microsoft.com> | 2019-05-17 11:41:49 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2019-06-12 11:33:54 -0700 |
| commit | 2d511cfc0bfe1d2b98ba8b272ddd9ba83e84e5f8 (patch) | |
| tree | 1bf0a1bf940a3c1a4db47c88a23fbf8b3bb7a080 /builtin/repack.c | |
| parent | 5472c32c3724e1404c3d80368edc28910969c29a (diff) | |
| download | git-2d511cfc0bfe1d2b98ba8b272ddd9ba83e84e5f8.tar.gz | |
packfile: rename close_all_packs to close_object_store
The close_all_packs() method is now responsible for more than just pack-files.
It also closes the commit-graph and the multi-pack-index. Rename the function
to be more descriptive of its larger role. The name also fits because the
input parameter is a raw_object_store.
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/repack.c')
| -rw-r--r-- | builtin/repack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/repack.c b/builtin/repack.c index 67f8978043..4de8b6600c 100644 --- a/builtin/repack.c +++ b/builtin/repack.c @@ -419,7 +419,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix) if (!names.nr && !po_args.quiet) printf_ln(_("Nothing new to pack.")); - close_all_packs(the_repository->objects); + close_object_store(the_repository->objects); /* * Ok we have prepared all new packfiles. |
