From 8e9622c22f76d550594212c8bf5057f39d76f383 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Tue, 15 Nov 2022 14:25:04 +1100 Subject: [PATCH] src/openssl.c: fix SSL_OP_NO_RENEGOTIATION Had a typo in the #ifdef Closes #205 --- src/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openssl.c b/src/openssl.c index 1d1164e..db64d03 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -10471,7 +10471,7 @@ static const auxL_IntegerReg sx_option[] = { { "OP_NO_TLSv1_3", SSL_OP_NO_TLSv1_3 }, #endif { "OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG", SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG }, -#ifdef SSL_OP_NO_RENEGOTIATION5 +#ifdef SSL_OP_NO_RENEGOTIATION { "OP_NO_RENEGOTIATION", SSL_OP_NO_RENEGOTIATION }, #endif #ifdef SSL_OP_CRYPTOPRO_TLSEXT_BUG