diff options
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r-- | src/microhttpd/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c index bf3f4d00..279aeaff 100644 --- a/src/microhttpd/connection.c +++ b/src/microhttpd/connection.c @@ -2894,7 +2894,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection) return MHD_YES; } MHD_connection_update_event_loop_info (connection); -#if EPOLL_SUPPORT +#ifdef EPOLL_SUPPORT if (0 != (daemon->options & MHD_USE_EPOLL_LINUX_ONLY)) { switch (connection->event_loop_info) @@ -2945,7 +2945,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection) } -#if EPOLL_SUPPORT +#ifdef EPOLL_SUPPORT /** * Perform epoll() processing, possibly moving the connection back into * the epoll() set if needed. |