From 8bb481f66e67f9369bfe62eb236ac1c3ca3bb550 Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Sat, 2 Dec 2023 22:49:25 +0300 Subject: [PATCH] "Upgraded" TLS connections: removed minor duplicated code --- src/microhttpd/daemon.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c index b758882a..cf5203aa 100644 --- a/src/microhttpd/daemon.c +++ b/src/microhttpd/daemon.c @@ -1526,7 +1526,6 @@ process_urh (struct MHD_UpgradeResponseHandle *urh) if (buf_size > SSIZE_MAX) buf_size = SSIZE_MAX; - connection->tls_read_ready = false; res = gnutls_record_recv (connection->tls_session, &urh->in_buffer[urh->in_buffer_used], buf_size);