1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-04-20 02:53:52 +02:00

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"
This commit is contained in:
Junio C Hamano 2021-07-28 13:17:56 -07:00
commit 1e893a1216
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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"));
}
}

View File

@ -258,7 +258,7 @@ static int process_request(void)
state = PROCESS_REQUEST_DONE;
break;
case PACKET_READ_RESPONSE_END:
BUG("unexpected stateless separator packet");
BUG("unexpected response end packet");
}
}