Skip to content

Commit

Permalink
src/openssl.c: fix SSL_OP_NO_RENEGOTIATION
Browse files Browse the repository at this point in the history
Had a typo in the #ifdef

Closes #205
  • Loading branch information
daurnimator committed Nov 15, 2022
1 parent 247c0d9 commit 8e9622c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8e9622c

Please sign in to comment.