mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-07 17:27:40 +00:00
pkt: send all of the wants in the negotiation
A missing if caused the function to return after the first want line without capabilities. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
This commit is contained in:
parent
7ad994bb60
commit
922bc22532
@ -332,7 +332,9 @@ int git_pkt_send_wants(git_headarray *refs, git_transport_caps *caps, int fd)
|
|||||||
|
|
||||||
git_oid_fmt(buf + strlen(WANT_PREFIX), &head->oid);
|
git_oid_fmt(buf + strlen(WANT_PREFIX), &head->oid);
|
||||||
error = gitno_send(fd, buf, strlen(buf), 0);
|
error = gitno_send(fd, buf, strlen(buf), 0);
|
||||||
return git__rethrow(error, "Failed to send want pkt");
|
if (error < 0) {
|
||||||
|
return git__rethrow(error, "Failed to send want pkt");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return git_pkt_send_flush(fd);
|
return git_pkt_send_flush(fd);
|
||||||
|
Loading…
Reference in New Issue
Block a user