Commit cc1d85d1da7fd0e51ea0e3ddfbe516c043c95731

Carlos Martín Nieto 2012-08-25T23:32:19

http: increase buffer side to deal with side-band-64k This poor transport was forgotten in the recent sideband support.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/transports/http.c b/src/transports/http.c
index ce382c3..de33f56 100644
--- a/src/transports/http.c
+++ b/src/transports/http.c
@@ -43,7 +43,7 @@ typedef struct {
 	char *host;
 	char *port;
 	char *service;
-	char buffer[4096];
+	char buffer[65536];
 #ifdef GIT_WIN32
 	WSADATA wsd;
 #endif