aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection_https.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection_https.c')
-rw-r--r--src/microhttpd/connection_https.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/connection_https.c b/src/microhttpd/connection_https.c
index 0d691706..5421d5b2 100644
--- a/src/microhttpd/connection_https.c
+++ b/src/microhttpd/connection_https.c
@@ -111,9 +111,9 @@ recv_tls_adapter (struct MHD_Connection *connection,
111#endif /* EPOLL_SUPPORT */ 111#endif /* EPOLL_SUPPORT */
112 112
113 /* Check whether TLS buffers still have some unread data. */ 113 /* Check whether TLS buffers still have some unread data. */
114 connection->tls_read_ready = ( ((size_t) res == i) && 114 connection->tls_read_ready =
115 (0 != gnutls_record_check_pending ( 115 ( ((size_t) res == i) &&
116 connection->tls_session)) ); 116 (0 != gnutls_record_check_pending (connection->tls_session)) );
117 return res; 117 return res;
118} 118}
119 119