From d503bfcc5fe6530e848022a7d89fd260fc6d12ac Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Tue, 24 Sep 2024 19:27:52 +0200 Subject: [PATCH] mhd_send: fixed wrong post-send options parameters --- src/mhd2/mhd_send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mhd2/mhd_send.c b/src/mhd2/mhd_send.c index 4747a796..ada93fed 100644 --- a/src/mhd2/mhd_send.c +++ b/src/mhd2/mhd_send.c @@ -812,7 +812,7 @@ mhd_plain_send (struct MHD_Connection *restrict c, * MSG_MORE support) will be used for the next reply so assume * that next sending will be the same, like this call. */ if (push_data && full_buf_sent) - post_send_setopt (c, false, push_data); + post_send_setopt (c, true, push_data); return mhd_SOCKET_ERR_NO_ERROR; }