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 /pkt-line.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 'pkt-line.c')
-rw-r--r-- | pkt-line.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkt-line.c b/pkt-line.c index 98304ce374..9f63eae2e6 100644 --- a/pkt-line.c +++ b/pkt-line.c @@ -103,7 +103,7 @@ void packet_response_end(int fd) { packet_trace("0002", 4, 1); if (write_in_full(fd, "0002", 4) < 0) - die_errno(_("unable to write stateless separator packet")); + die_errno(_("unable to write response end packet")); } int packet_flush_gently(int fd) |