summary refs log tree commit diff
path: root/pkt-line.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-07-28 13:17:56 -0700
committerJunio C Hamano <gitster@pobox.com>2021-07-28 13:17:56 -0700
commit1e893a1216a1eec0e5e28e0a26098354e4d5a909 (patch)
tree02856c4872b90ae02adf3cd6bf1e8e2103d0cf34 /pkt-line.c
parenteb27b338a3e71c7c4079fbac8aeae3f8fbb5c687 (diff)
parent8232a0ff48ce0959e20db9ffa1c4e16d4657dbec (diff)
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.c2
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)