mirror of
https://github.com/redis/redis.git
synced 2026-05-28 04:02:46 -04:00
Merge pull request #7131 from botovq/tls_no_renegotiation
TLS: Fix build with SSL_OP_NO_CLIENT_RENEGOTIATION
This commit is contained in:
commit
3e738c8a6c
1 changed files with 1 additions and 1 deletions
|
|
@ -160,7 +160,7 @@ int tlsConfigure(redisTLSContextConfig *ctx_config) {
|
|||
#endif
|
||||
|
||||
#ifdef SSL_OP_NO_CLIENT_RENEGOTIATION
|
||||
SSL_CTX_set_options(ssl->ctx, SSL_OP_NO_CLIENT_RENEGOTIATION);
|
||||
SSL_CTX_set_options(ctx, SSL_OP_NO_CLIENT_RENEGOTIATION);
|
||||
#endif
|
||||
|
||||
if (ctx_config->prefer_server_ciphers)
|
||||
|
|
|
|||
Loading…
Reference in a new issue