diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2017-09-08 22:04:40 +0300 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2017-09-08 22:04:40 +0300 |
commit | 4adf1c6d1744e1ac4cb0c88817a3726c3038b919 (patch) | |
tree | 8a9341dbbe6f920962c43b2da4f7d8d408f31bb0 | |
parent | 3474e1b7f9bf7bdbde47d13c59961508bcd273da (diff) | |
download | libmicrohttpd-4adf1c6d1744e1ac4cb0c88817a3726c3038b919.tar.gz libmicrohttpd-4adf1c6d1744e1ac4cb0c88817a3726c3038b919.zip |
send_tls_adapter(): removed leftover errno manipulation
-rw-r--r-- | src/microhttpd/connection_https.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/microhttpd/connection_https.c b/src/microhttpd/connection_https.c index 2b9e9eca..87b74525 100644 --- a/src/microhttpd/connection_https.c +++ b/src/microhttpd/connection_https.c | |||
@@ -114,7 +114,6 @@ send_tls_adapter (struct MHD_Connection *connection, | |||
114 | if ( (GNUTLS_E_AGAIN == res) || | 114 | if ( (GNUTLS_E_AGAIN == res) || |
115 | (GNUTLS_E_INTERRUPTED == res) ) | 115 | (GNUTLS_E_INTERRUPTED == res) ) |
116 | { | 116 | { |
117 | MHD_socket_set_error_ (MHD_SCKT_EINTR_); | ||
118 | #ifdef EPOLL_SUPPORT | 117 | #ifdef EPOLL_SUPPORT |
119 | if (GNUTLS_E_AGAIN == res) | 118 | if (GNUTLS_E_AGAIN == res) |
120 | connection->epoll_state &= ~MHD_EPOLL_STATE_WRITE_READY; | 119 | connection->epoll_state &= ~MHD_EPOLL_STATE_WRITE_READY; |