gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] branch master updated: fix #5977


From: gnunet
Subject: [libmicrohttpd] branch master updated: fix #5977
Date: Sun, 15 Dec 2019 14:16:00 +0100

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

grothoff pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new 6f3a998f fix #5977
6f3a998f is described below

commit 6f3a998f22c15891dfe5d33a8c1b138090aa6968
Author: Christian Grothoff <address@hidden>
AuthorDate: Sun Dec 15 14:12:44 2019 +0100

    fix #5977
---
 ChangeLog                    | 3 +++
 src/microhttpd/mhd_sockets.c | 1 +
 2 files changed, 4 insertions(+)

diff --git a/ChangeLog b/ChangeLog
index 3461e356..a8f5cf0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+Sun 15 Dec 2019 02:12:02 PM CET
+    Fix send() call (affects Mac OS X). #5977 -CG/fbrault
+
 Fri 29 Nov 2019 11:22:25 PM CET
     If application suspends a connection before we could send 100 CONTINUE,
     give application another shot at queuing a reply before the upload begins. 
-CG
diff --git a/src/microhttpd/mhd_sockets.c b/src/microhttpd/mhd_sockets.c
index 7172f8ee..cda00fdd 100644
--- a/src/microhttpd/mhd_sockets.c
+++ b/src/microhttpd/mhd_sockets.c
@@ -528,6 +528,7 @@ MHD_socket_cork_ (MHD_socket sock,
        TCP_CORK always flushes socket buffer. */
     if (0 > send (sock,
                   &dummy,
+                  0,
                   0))
       return 0; /* even force flush failed!? */
     return 1; /* success */

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



reply via email to

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