From 7af3ea32d51c5ffaca7c69e33f04e5dbdec136fb Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Fri, 3 Nov 2017 14:46:29 +0300 Subject: [PATCH] connection_https.c: fixed comment --- src/microhttpd/connection_https.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/microhttpd/connection_https.c b/src/microhttpd/connection_https.c index 9ddad117..63623138 100644 --- a/src/microhttpd/connection_https.c +++ b/src/microhttpd/connection_https.c @@ -128,8 +128,8 @@ send_tls_adapter (struct MHD_Connection *connection, } #ifdef EPOLL_SUPPORT /* Unlike non-TLS connections, do not reset "write-ready" if - * sent smaller amount than provided, as TLS connections may - * break data into smaller parts for sending. */ + * sent amount smaller than provided amount, as TLS + * connections may break data into smaller parts for sending. */ #endif /* EPOLL_SUPPORT */ return res; }