gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r34756 - libmicrohttpd/src/microhttpd


From: gnunet
Subject: [GNUnet-SVN] r34756 - libmicrohttpd/src/microhttpd
Date: Mon, 22 Dec 2014 20:41:51 +0100

Author: Karlson2k
Date: 2014-12-22 20:41:51 +0100 (Mon, 22 Dec 2014)
New Revision: 34756

Modified:
   libmicrohttpd/src/microhttpd/daemon.c
Log:
daemon.c: Fix macro check with HAVE_ACCEPT4 == 0 in MHD_accept_connection()

Modified: libmicrohttpd/src/microhttpd/daemon.c
===================================================================
--- libmicrohttpd/src/microhttpd/daemon.c       2014-12-22 19:41:45 UTC (rev 
34755)
+++ libmicrohttpd/src/microhttpd/daemon.c       2014-12-22 19:41:51 UTC (rev 
34756)
@@ -1841,7 +1841,7 @@
         }
       return MHD_NO;
     }
-#if !defined(HAVE_ACCEPT4) || !defined(HAVE_SOCK_NONBLOCK) || SOCK_CLOEXEC+0 
== 0
+#if !defined(HAVE_ACCEPT4) || HAVE_ACCEPT4+0 == 0 || 
!defined(HAVE_SOCK_NONBLOCK) || SOCK_CLOEXEC+0 == 0
   make_nonblocking_noninheritable (daemon, s);
 #endif
 #if HAVE_MESSAGES




reply via email to

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