Don't reset need_pack

While looping over multiple heads, an up-to-date head will clobber the `remote->need_pack` setting, preventing the rest of the machinery from building and downloading a pack-file, breaking fetches.
This commit is contained in:
Etienne Samson 2014-03-30 18:08:32 +02:00
parent 7b445c2195
commit 31143b3655

View File

@ -44,7 +44,6 @@ static int maybe_want(git_remote *remote, git_remote_head *head, git_odb *odb, g
/* If we have the object, mark it so we don't ask for it */
if (git_odb_exists(odb, &head->oid)) {
head->local = 1;
remote->need_pack = 0;
}
else
remote->need_pack = 1;
@ -107,6 +106,8 @@ int git_fetch_negotiate(git_remote *remote)
{
git_transport *t = remote->transport;
remote->need_pack = 0;
if (filter_wants(remote) < 0) {
giterr_set(GITERR_NET, "Failed to filter the reference list for wants");
return -1;