From 43ee3a30379f9d2db9f9b3331ca5f825a5aab2af Mon Sep 17 00:00:00 2001 From: ng0 Date: Mon, 29 Jul 2019 15:15:33 +0000 Subject: test for MGS_MORE existing, not its non-existince. --- src/microhttpd/mhd_send.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c index 442a5373..412a296c 100644 --- a/src/microhttpd/mhd_send.c +++ b/src/microhttpd/mhd_send.c @@ -46,7 +46,8 @@ static void pre_cork_setsockopt (struct MHD_Connection *connection, bool want_cork) { -#ifndef MSG_MORE +#if MSG_MORE +#else int ret; const MHD_SCKT_OPT_BOOL_ off_val = 0; const MHD_SCKT_OPT_BOOL_ on_val = 1; @@ -98,7 +99,8 @@ static void post_cork_setsockopt (struct MHD_Connection *connection, bool want_cork) { -#ifndef MSG_MORE +#if MSG_MORE +#else int ret; const MHD_SCKT_OPT_BOOL_ off_val = 0; const MHD_SCKT_OPT_BOOL_ on_val = 1; @@ -131,7 +133,7 @@ post_cork_setsockopt (struct MHD_Connection *connection, connection->sk_cork_on = want_cork; } return; -#endif /* HAVE_MORE */ +#endif /* MSG_MORE */ } /** -- cgit v1.2.3