summaryrefslogtreecommitdiffstats
path: root/transport-helper.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-08-16 00:08:28 +0200
committerJunio C Hamano <gitster@pobox.com>2018-08-16 00:08:28 +0200
commitb160b6e69d5e8231cf71b3bcacef63443849d1f9 (patch)
treea9d7d4cd00f10d1b4545b3fa3596bcd24f7c907c /transport-helper.c
parentMerge branch 'sg/travis-retrieve-trash-upon-failure' (diff)
parentfetch-pack: unify ref in and out param (diff)
downloadgit-b160b6e69d5e8231cf71b3bcacef63443849d1f9.tar.xz
git-b160b6e69d5e8231cf71b3bcacef63443849d1f9.zip
Merge branch 'jt/connectivity-check-after-unshallow'
"git fetch" sometimes failed to update the remote-tracking refs, which has been corrected. * jt/connectivity-check-after-unshallow: fetch-pack: unify ref in and out param
Diffstat (limited to 'transport-helper.c')
-rw-r--r--transport-helper.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/transport-helper.c b/transport-helper.c
index 0a71929105..143ca008c8 100644
--- a/transport-helper.c
+++ b/transport-helper.c
@@ -651,16 +651,14 @@ static int connect_helper(struct transport *transport, const char *name,
}
static int fetch(struct transport *transport,
- int nr_heads, struct ref **to_fetch,
- struct ref **fetched_refs)
+ int nr_heads, struct ref **to_fetch)
{
struct helper_data *data = transport->data;
int i, count;
if (process_connect(transport, 0)) {
do_take_over(transport);
- return transport->vtable->fetch(transport, nr_heads, to_fetch,
- fetched_refs);
+ return transport->vtable->fetch(transport, nr_heads, to_fetch);
}
count = 0;