gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed GNU/Linux buil


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: Fixed GNU/Linux builds without epoll
Date: Wed, 12 Apr 2017 20:12:05 +0200

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new 01df8861 Fixed GNU/Linux builds without epoll
01df8861 is described below

commit 01df8861c19a203cea9ef26570893c2b9c0e48b2
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Wed Apr 12 21:11:28 2017 +0300

    Fixed GNU/Linux builds without epoll
---
 src/microhttpd/daemon.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 49a1b828..02713e3a 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -2251,8 +2251,10 @@ send_param_adapter (struct MHD_Connection *connection,
       if (0 < ret)
         {
           /* write successful */
+#ifdef EPOLL_SUPPORT
           if (left > (uint64_t)ret)
             connection->epoll_state &= ~MHD_EPOLL_STATE_WRITE_READY;
+#endif /* EPOLL_SUPPORT */
           return ret;
         }
       err = MHD_socket_get_error_();

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



reply via email to

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