From 919c6d4e52197b22aebb60342cfc06c1e80b2b73 Mon Sep 17 00:00:00 2001 From: ng0 Date: Tue, 30 Jul 2019 09:04:16 +0000 Subject: MSG_MORE fix --- 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 index 8eec8234..dc7414c6 100644 --- a/src/microhttpd/mhd_send.c +++ b/src/microhttpd/mhd_send.c @@ -250,7 +250,7 @@ MHD_send_on_connection_ (struct MHD_Connection *connection, { /* plaintext transmission */ pre_cork_setsockopt (connection, want_cork); -#if MSG_MORE +#if HAVE_MSG_MORE ret = send (s, buffer, buffer_size, -- cgit v1.2.3