diff options
author | daurnimator <quae@daurnimator.com> | 2022-11-15 14:25:04 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2022-11-15 14:25:04 +1100 |
commit | 8e9622c22f76d550594212c8bf5057f39d76f383 (patch) | |
tree | 3aec906dbd531019e631435f967164d8cc68f117 | |
parent | 247c0d9e12d2c654284c259f8cdb2a6ecf9d81b5 (diff) | |
download | luaossl-8e9622c22f76d550594212c8bf5057f39d76f383.tar.gz luaossl-8e9622c22f76d550594212c8bf5057f39d76f383.tar.bz2 luaossl-8e9622c22f76d550594212c8bf5057f39d76f383.zip |
src/openssl.c: fix SSL_OP_NO_RENEGOTIATION
Had a typo in the #ifdef
Closes #205
-rw-r--r-- | src/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |