summaryrefslogtreecommitdiff
path: root/transport.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-05 19:35:55 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-10-05 19:35:55 (GMT)
commit9e3e789e70701beb25b3135d292edfbc99035701 (patch)
treef23f4b4b4d23f348762c774ef038b55a5b01cd51 /transport.c
parent9c140016508fe7329d5aa962b473d8e84af108b1 (diff)
parentbe042aff24c8a17565934874f5d2eebd77ab2562 (diff)
downloadgit-9e3e789e70701beb25b3135d292edfbc99035701.zip
git-9e3e789e70701beb25b3135d292edfbc99035701.tar.gz
git-9e3e789e70701beb25b3135d292edfbc99035701.tar.bz2
Merge branch 'jc/maint-bundle-too-quiet'
* jc/maint-bundle-too-quiet: Teach progress eye-candy to fetch_refs_from_bundle()
Diffstat (limited to 'transport.c')
-rw-r--r--transport.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/transport.c b/transport.c
index fa279d5..e194061 100644
--- a/transport.c
+++ b/transport.c
@@ -432,7 +432,8 @@ static int fetch_refs_from_bundle(struct transport *transport,
int nr_heads, struct ref **to_fetch)
{
struct bundle_transport_data *data = transport->data;
- return unbundle(&data->header, data->fd);
+ return unbundle(&data->header, data->fd,
+ transport->progress ? BUNDLE_VERBOSE : 0);
}
static int close_bundle(struct transport *transport)