Commit 9286e413992300ef88ef3dc70c82bb223e4b96f6

Edward Thomson 2018-06-26T09:56:06

smart protocol: correct error message capitalization

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/transports/smart_protocol.c b/src/transports/smart_protocol.c
index f2b091c..442a10f 100644
--- a/src/transports/smart_protocol.c
+++ b/src/transports/smart_protocol.c
@@ -71,7 +71,7 @@ int git_smart__store_refs(transport_smart *t, int flushes)
 		}
 
 		if (pkt->type == GIT_PKT_PACK) {
-			giterr_set(GITERR_NET, "Unexpected packfile");
+			giterr_set(GITERR_NET, "unexpected packfile");
 			git__free(pkt);
 			return -1;
 		}