libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 8ce24c2ae433fdf1ec125211d3622f3c27b56797
parent 379da4ce093bdc957b53b563aa1ae0c7c37c19ac
Author: ng0 <ng0@n0.is>
Date:   Mon, 29 Jul 2019 20:01:01 +0000

_len -> _size

Diffstat:
Msrc/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 @@ -343,7 +343,7 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection, ret = writev (s, vector, iovcnt); #endif - if (ret == header_len + buffer_len) + if (ret == header_size + buffer_size) want_cork = false; post_cork_setsockopt (connection, want_cork);