mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-14 17:32:14 +00:00
Make "Early EOF" message start with lowercase
This commit is contained in:
parent
542a7de0cd
commit
7e9a240e0a
@ -51,7 +51,7 @@ int git_smart__store_refs(transport_smart *t, int flushes)
|
|||||||
return recvd;
|
return recvd;
|
||||||
|
|
||||||
if (recvd == 0 && !flush) {
|
if (recvd == 0 && !flush) {
|
||||||
giterr_set(GITERR_NET, "Early EOF");
|
giterr_set(GITERR_NET, "early EOF");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -769,7 +769,7 @@ static int parse_report(transport_smart *transport, git_push *push)
|
|||||||
return recvd;
|
return recvd;
|
||||||
|
|
||||||
if (recvd == 0) {
|
if (recvd == 0) {
|
||||||
giterr_set(GITERR_NET, "Early EOF");
|
giterr_set(GITERR_NET, "early EOF");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
Reference in New Issue
Block a user