aboutsummaryrefslogtreecommitdiff
path: root/transport.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-15 20:46:39 -0700
committerJunio C Hamano <gitster@pobox.com>2011-10-15 20:46:39 -0700
commit6323a14701a191546f95fb4ab8266abcfc97d32d (patch)
tree9db63897c7c84077e80230b764d99478c5ff1347 /transport.c
parent3197bd850b193a0d182674ab9705cf4acdc313e3 (diff)
parentbe042aff24c8a17565934874f5d2eebd77ab2562 (diff)
downloadgit-6323a14701a191546f95fb4ab8266abcfc97d32d.tar.gz
git-6323a14701a191546f95fb4ab8266abcfc97d32d.tar.xz
Merge branch 'jc/maint-bundle-too-quiet' into maint
* 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 fa279d531..e1940615e 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)