From cf44eb7ae4ecf63e9dedcf17db8883d050157dbd Mon Sep 17 00:00:00 2001 From: Joshua Rogers Date: Thu, 16 Oct 2025 17:33:50 +0800 Subject: [PATCH] Remove more dead code MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Joshua Rogers Reviewed-by: Saša Nedvědický Reviewed-by: Tomas Mraz Reviewed-by: Frederik Wedel-Heinen Reviewed-by: Todd Short (Merged from https://github.com/openssl/openssl/pull/28914) --- apps/s_client.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/apps/s_client.c b/apps/s_client.c index 836c6b81222..7c3e1ef7bc8 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -3165,15 +3165,6 @@ int s_client_main(int argc, char **argv) } } else if (ssl_pending || (!isquic && FD_ISSET(SSL_get_fd(con), &readfds))) { -#ifdef RENEG - { - static int iiii; - if (++iiii == 52) { - SSL_renegotiate(con); - iiii = 0; - } - } -#endif k = SSL_read(con, sbuf, BUFSIZZ); switch (SSL_get_error(con, k)) { -- 2.47.3