multi-pack-index: store local property

A pack-file is 'local' if it is stored within the usual object
directory. If it is stored in an alternate, it is non-local.

Pack-files are stored using a 'pack_local' member in the packed_git
struct. Add a similar 'local' member to the multi_pack_index struct
and 'local' parameters to the methods that load and prepare multi-
pack-indexes.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Derrick Stolee
2018-08-20 16:51:55 +00:00
committed by Junio C Hamano
parent 6d68e6a461
commit 2cf489a3bf
4 changed files with 13 additions and 10 deletions

View File

@ -7,7 +7,7 @@
static int read_midx_file(const char *object_dir)
{
uint32_t i;
struct multi_pack_index *m = load_multi_pack_index(object_dir);
struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
if (!m)
return 1;