commit 9c8c1e7b4924395f5524e8b6c5023673d064d11f parent 81a47b20ebdbbee16e4650ef1276f653f1f2bf5f Author: ng0 <ng0@n0.is> Date: Wed, 24 Jul 2019 16:23:03 +0000 fix Diffstat:
| M | src/microhttpd/mhd_send.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c @@ -209,7 +209,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection, break; /* Cork the header. */ case MHD_SSO_HDR_CORK: - want_cork = (buffer_size <= 1024) // && (buffer_size <= 1220); + want_cork = (buffer_size <= 1024); break; }