diff options
author | Derrick Stolee <derrickstolee@github.com> | 2022-10-12 14:52:37 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-10-12 18:13:25 +0200 |
commit | 89bd7fedf947484da08e2722d663fdac23a431be (patch) | |
tree | 3b293a3fd460a91bc59ae0511338348f3a5c2aec /transport.c | |
parent | bundle-uri: fetch a list of bundles (diff) | |
download | git-89bd7fedf947484da08e2722d663fdac23a431be.tar.xz git-89bd7fedf947484da08e2722d663fdac23a431be.zip |
bundle: add flags to verify_bundle()
The verify_bundle() method has a 'verbose' option, but we will want to
extend this method to have more granular control over its output. First,
replace this 'verbose' option with a new 'flags' option with a single
possible value: VERIFY_BUNDLE_VERBOSE.
Signed-off-by: Derrick Stolee <derrickstolee@github.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.c')
-rw-r--r-- | transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transport.c b/transport.c index b51e991e44..de4d88687c 100644 --- a/transport.c +++ b/transport.c @@ -178,7 +178,7 @@ static int fetch_refs_from_bundle(struct transport *transport, if (!data->get_refs_from_bundle_called) get_refs_from_bundle_inner(transport); ret = unbundle(the_repository, &data->header, data->fd, - &extra_index_pack_args); + &extra_index_pack_args, 0); transport->hash_algo = data->header.hash_algo; return ret; } |