diff options
| author | Junio C Hamano <gitster@pobox.com> | 2011-12-19 16:05:55 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2011-12-19 16:05:55 -0800 |
| commit | b3ae9d8e57166c771926e3f55555bf248b71202a (patch) | |
| tree | 358559721eb8de383691b33f4ff54ff7454d981a /remote-curl.c | |
| parent | Merge branch 'nd/resolve-ref' (diff) | |
| parent | connect.c: drop path_match function (diff) | |
| download | git-b3ae9d8e57166c771926e3f55555bf248b71202a.tar.gz git-b3ae9d8e57166c771926e3f55555bf248b71202a.zip | |
Merge branch 'jk/fetch-no-tail-match-refs'
* jk/fetch-no-tail-match-refs:
connect.c: drop path_match function
fetch-pack: match refs exactly
t5500: give fully-qualified refs to fetch-pack
drop "match" parameter from get_remote_heads
Diffstat (limited to 'remote-curl.c')
| -rw-r--r-- | remote-curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote-curl.c b/remote-curl.c index 0e720ee8bb..94dc4886d0 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -200,7 +200,7 @@ static struct ref *parse_git_refs(struct discovery *heads) if (start_async(&async)) die("cannot start thread to parse advertised refs"); - get_remote_heads(async.out, &list, 0, NULL, 0, NULL); + get_remote_heads(async.out, &list, 0, NULL); close(async.out); if (finish_async(&async)) die("ref parsing thread failed"); |
