commit de8217492bec2f08c985fd1a871fe2e6a5b753a6
parent 4f9c0097f1582a312e5dba8edbc7a7da799755f7
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Thu, 16 Mar 2017 00:26:22 +0300
MHD_connection_handle_idle(): fixed missing bracket
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
@@ -3221,7 +3221,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
ret = MHD_YES;
#ifdef EPOLL_SUPPORT
if ( (! connection->suspended) &&
- (0 != (daemon->options & MHD_USE_EPOLL))
+ (0 != (daemon->options & MHD_USE_EPOLL)) )
{
ret = MHD_connection_epoll_update_ (connection);
}