aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/mhd_send.c')
-rw-r--r--src/microhttpd/mhd_send.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index 6637d2d2..8eec8234 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -21,7 +21,7 @@
21/** 21/**
22 * @file microhttpd/mhd_send.c 22 * @file microhttpd/mhd_send.c
23 * @brief Implementation of send() wrappers. 23 * @brief Implementation of send() wrappers.
24 * @author ng0 <ng0@n0.is> 24 * @author ng0 (N. Gillmann)
25 * @author Christian Grothoff 25 * @author Christian Grothoff
26 * @author Evgeny Grin 26 * @author Evgeny Grin
27 */ 27 */
@@ -48,7 +48,7 @@ static void
48pre_cork_setsockopt (struct MHD_Connection *connection, 48pre_cork_setsockopt (struct MHD_Connection *connection,
49 bool want_cork) 49 bool want_cork)
50{ 50{
51#if MSG_MORE 51#if HAVE_MSG_MORE
52#else 52#else
53 int ret; 53 int ret;
54 const MHD_SCKT_OPT_BOOL_ off_val = 0; 54 const MHD_SCKT_OPT_BOOL_ off_val = 0;
@@ -101,7 +101,7 @@ static void
101post_cork_setsockopt (struct MHD_Connection *connection, 101post_cork_setsockopt (struct MHD_Connection *connection,
102 bool want_cork) 102 bool want_cork)
103{ 103{
104#if MSG_MORE 104#if HAVE_MSG_MORE
105#else 105#else
106 int ret; 106 int ret;
107 const MHD_SCKT_OPT_BOOL_ off_val = 0; 107 const MHD_SCKT_OPT_BOOL_ off_val = 0;