aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-16 00:26:22 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-16 00:26:22 +0300
commitde8217492bec2f08c985fd1a871fe2e6a5b753a6 (patch)
treed3a7f9a639facc9107350d33cba82821a8e9e8b9
parent4f9c0097f1582a312e5dba8edbc7a7da799755f7 (diff)
downloadlibmicrohttpd-de8217492bec2f08c985fd1a871fe2e6a5b753a6.tar.gz
libmicrohttpd-de8217492bec2f08c985fd1a871fe2e6a5b753a6.zip
MHD_connection_handle_idle(): fixed missing bracket
-rw-r--r--src/microhttpd/connection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index c8333817..74238a1b 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -3221,7 +3221,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection)
3221 ret = MHD_YES; 3221 ret = MHD_YES;
3222#ifdef EPOLL_SUPPORT 3222#ifdef EPOLL_SUPPORT
3223 if ( (! connection->suspended) && 3223 if ( (! connection->suspended) &&
3224 (0 != (daemon->options & MHD_USE_EPOLL)) 3224 (0 != (daemon->options & MHD_USE_EPOLL)) )
3225 { 3225 {
3226 ret = MHD_connection_epoll_update_ (connection); 3226 ret = MHD_connection_epoll_update_ (connection);
3227 } 3227 }