summaryrefslogtreecommitdiff
path: root/fetch-pack.c
diff options
context:
space:
mode:
authorJonathan Tan <jonathantanmy@google.com>2021-04-09 01:09:58 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-04-09 04:49:47 (GMT)
commit81ed96a9b2c5ad8a3b1ea04fd6cd273557b76c58 (patch)
treec753af4e2363d70b775352b82819d785fe11d50d /fetch-pack.c
parente4f4299859610638e45ec1a36266973b9a4eb47a (diff)
downloadgit-81ed96a9b2c5ad8a3b1ea04fd6cd273557b76c58.zip
git-81ed96a9b2c5ad8a3b1ea04fd6cd273557b76c58.tar.gz
git-81ed96a9b2c5ad8a3b1ea04fd6cd273557b76c58.tar.bz2
fetch-pack: buffer object-format with other args
In send_fetch_request(), "object-format" is written directly to the file descriptor, as opposed to the other arguments, which are buffered. Buffer "object-format" as well. "object-format" must be buffered; in particular, it must appear after "command=fetch" in the request. This divergence was introduced in 4b831208bb ("fetch-pack: parse and advertise the object-format capability", 2020-05-27), perhaps as an oversight (the surrounding code at the point of this commit has already been using a request buffer.) Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fetch-pack.c')
-rw-r--r--fetch-pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch-pack.c b/fetch-pack.c
index 80fb3bd..30a0867 100644
--- a/fetch-pack.c
+++ b/fetch-pack.c
@@ -1210,7 +1210,7 @@ static int send_fetch_request(struct fetch_negotiator *negotiator, int fd_out,
if (hash_algo_by_ptr(the_hash_algo) != hash_algo)
die(_("mismatched algorithms: client %s; server %s"),
the_hash_algo->name, hash_name);
- packet_write_fmt(fd_out, "object-format=%s", the_hash_algo->name);
+ packet_buf_write(&req_buf, "object-format=%s", the_hash_algo->name);
} else if (hash_algo_by_ptr(the_hash_algo) != GIT_HASH_SHA1) {
die(_("the server does not support algorithm '%s'"),
the_hash_algo->name);