From cc1d85d1da7fd0e51ea0e3ddfbe516c043c95731 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Sat, 25 Aug 2012 23:32:19 +0200 Subject: [PATCH] http: increase buffer side to deal with side-band-64k This poor transport was forgotten in the recent sideband support. --- src/transports/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transports/http.c b/src/transports/http.c index ce382c3ad..de33f56ea 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 -- 2.39.5