]> git.proxmox.com Git - libgit2.git/commitdiff
Make "Early EOF" message start with lowercase
authorMarius Ungureanu <teromario@yahoo.com>
Thu, 14 May 2015 18:33:55 +0000 (21:33 +0300)
committerMarius Ungureanu <marius.ungureanu@xamarin.com>
Thu, 14 May 2015 18:39:52 +0000 (21:39 +0300)
src/transports/smart_protocol.c

index 7f6b74ca7f092b2d83ba5b87564184f3ad94b0c3..66f78f73ceac27b36b6b3a9e7fbe89087aa0d95f 100644 (file)
@@ -51,7 +51,7 @@ int git_smart__store_refs(transport_smart *t, int flushes)
                                return recvd;
 
                        if (recvd == 0 && !flush) {
-                               giterr_set(GITERR_NET, "Early EOF");
+                               giterr_set(GITERR_NET, "early EOF");
                                return -1;
                        }
 
@@ -769,7 +769,7 @@ static int parse_report(transport_smart *transport, git_push *push)
                                return recvd;
 
                        if (recvd == 0) {
-                               giterr_set(GITERR_NET, "Early EOF");
+                               giterr_set(GITERR_NET, "early EOF");
                                return -1;
                        }
                        continue;