aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_send.c
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-07-29 20:01:01 +0000
committerng0 <ng0@n0.is>2019-07-29 20:01:01 +0000
commit8ce24c2ae433fdf1ec125211d3622f3c27b56797 (patch)
tree32c4fc6cd98590178a8793fbc7e1275247145b3d /src/microhttpd/mhd_send.c
parent379da4ce093bdc957b53b563aa1ae0c7c37c19ac (diff)
downloadlibmicrohttpd-8ce24c2ae433fdf1ec125211d3622f3c27b56797.tar.gz
libmicrohttpd-8ce24c2ae433fdf1ec125211d3622f3c27b56797.zip
_len -> _size
Diffstat (limited to 'src/microhttpd/mhd_send.c')
-rw-r--r--src/microhttpd/mhd_send.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 64079b8d..d360f981 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -343,7 +343,7 @@ MHD_send_on_connection2_ (struct MHD_Connection *connection,
343 ret = writev (s, vector, iovcnt); 343 ret = writev (s, vector, iovcnt);
344#endif 344#endif
345 345
346 if (ret == header_len + buffer_len) 346 if (ret == header_size + buffer_size)
347 want_cork = false; 347 want_cork = false;
348 348
349 post_cork_setsockopt (connection, want_cork); 349 post_cork_setsockopt (connection, want_cork);