Skip to content

Commit 8e9622c

Browse files
committed
src/openssl.c: fix SSL_OP_NO_RENEGOTIATION
Had a typo in the #ifdef Closes #205
1 parent 247c0d9 commit 8e9622c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10471,7 +10471,7 @@ static const auxL_IntegerReg sx_option[] = {
1047110471
{ "OP_NO_TLSv1_3", SSL_OP_NO_TLSv1_3 },
1047210472
#endif
1047310473
{ "OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG", SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG },
10474-
#ifdef SSL_OP_NO_RENEGOTIATION5
10474+
#ifdef SSL_OP_NO_RENEGOTIATION
1047510475
{ "OP_NO_RENEGOTIATION", SSL_OP_NO_RENEGOTIATION },
1047610476
#endif
1047710477
#ifdef SSL_OP_CRYPTOPRO_TLSEXT_BUG

0 commit comments

Comments
 (0)