gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] 107/154: test for MGS_MORE existing, not it


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 107/154: test for MGS_MORE existing, not its non-existince.
Date: Mon, 19 Aug 2019 10:16:59 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit 43ee3a30379f9d2db9f9b3331ca5f825a5aab2af
Author: ng0 <address@hidden>
AuthorDate: Mon Jul 29 15:15:33 2019 +0000

    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 */
 }
 
 /**

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]