diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-07-28 22:17:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-07-28 22:17:56 +0200 |
commit | 1e893a1216a1eec0e5e28e0a26098354e4d5a909 (patch) | |
tree | 02856c4872b90ae02adf3cd6bf1e8e2103d0cf34 /remote-curl.c | |
parent | The sixth batch (diff) | |
parent | pkt-line: replace "stateless separator" with "response end" (diff) | |
download | git-1e893a1216a1eec0e5e28e0a26098354e4d5a909.tar.xz git-1e893a1216a1eec0e5e28e0a26098354e4d5a909.zip |
Merge branch 'dl/packet-read-response-end-fix'
Error message update.
* dl/packet-read-response-end-fix:
pkt-line: replace "stateless separator" with "response end"
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 9d432c299a..6c320d5704 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -653,7 +653,7 @@ static int rpc_read_from_out(struct rpc_state *rpc, int options, memcpy(buf - 4, "0000", 4); break; case PACKET_READ_RESPONSE_END: - die(_("remote server sent stateless separator")); + die(_("remote server sent unexpected response end packet")); } } |