aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection_https.c
diff options
context:
space:
mode:
authorAndrey Uzunov <andrey.uzunov@gmail.com>2013-07-21 16:05:48 +0000
committerAndrey Uzunov <andrey.uzunov@gmail.com>2013-07-21 16:05:48 +0000
commit184cbd62227272a9b89f5acf5373f31fa01e8a96 (patch)
treef201651a8b80aaf996873c54f7a9615861af255b /src/microhttpd/connection_https.c
parentd618f1d7bc2e9754458e397ba29fd6cbeb4dd387 (diff)
downloadlibmicrohttpd-184cbd62227272a9b89f5acf5373f31fa01e8a96.tar.gz
libmicrohttpd-184cbd62227272a9b89f5acf5373f31fa01e8a96.zip
microhttpd: put "#if EPOLL_SUPPORT" everywhere, so compilation can succeed even when it is disabled
Diffstat (limited to 'src/microhttpd/connection_https.c')
-rw-r--r--src/microhttpd/connection_https.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/microhttpd/connection_https.c b/src/microhttpd/connection_https.c
index 0b764eb7..4f49d513 100644
--- a/src/microhttpd/connection_https.c
+++ b/src/microhttpd/connection_https.c
@@ -157,7 +157,11 @@ MHD_tls_connection_handle_idle (struct MHD_Connection *connection)
157 return MHD_YES; 157 return MHD_YES;
158 return MHD_connection_handle_idle (connection); 158 return MHD_connection_handle_idle (connection);
159 } 159 }
160#if EPOLL_SUPPORT
160 return MHD_connection_epoll_update_ (connection); 161 return MHD_connection_epoll_update_ (connection);
162#else
163 return MHD_YES;
164#endif
161} 165}
162 166
163 167