aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection_https.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-24 15:02:10 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-24 15:02:10 +0000
commit9826ad54e0de815ca9a2b071717dc8aed1ce1a5c (patch)
tree72da2ca91f3bd6ae8ed23d8614db888a3510cd16 /src/microhttpd/connection_https.c
parentdfbda8ae1ee98455a488de3a78ae4fd198e57cd4 (diff)
downloadlibmicrohttpd-9826ad54e0de815ca9a2b071717dc8aed1ce1a5c.tar.gz
libmicrohttpd-9826ad54e0de815ca9a2b071717dc8aed1ce1a5c.zip
Refactoring: do not define EPOLL_SUPPORT if epoll is disabled or not supported.
Diffstat (limited to 'src/microhttpd/connection_https.c')
-rw-r--r--src/microhttpd/connection_https.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/connection_https.c b/src/microhttpd/connection_https.c
index 94b6f3a6..a79d989a 100644
--- a/src/microhttpd/connection_https.c
+++ b/src/microhttpd/connection_https.c
@@ -159,7 +159,7 @@ MHD_tls_connection_handle_idle (struct MHD_Connection *connection)
159 return MHD_YES; 159 return MHD_YES;
160 return MHD_connection_handle_idle (connection); 160 return MHD_connection_handle_idle (connection);
161 } 161 }
162#if EPOLL_SUPPORT 162#ifdef EPOLL_SUPPORT
163 return MHD_connection_epoll_update_ (connection); 163 return MHD_connection_epoll_update_ (connection);
164#else 164#else
165 return MHD_YES; 165 return MHD_YES;