diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2021-01-26 13:44:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-26 13:44:33 +0100 |
commit | 74c1aff706b4140a106b111c9cf9e1723f92d5f0 (patch) | |
tree | a1e1733d4aba34796eeace5dbcee71748f8a4a2c /ACE | |
parent | c8da16d9e0323a261204a438844099da5680f64d (diff) | |
download | ATCD-74c1aff706b4140a106b111c9cf9e1723f92d5f0.tar.gz |
Update ACE/ace/SSL/SSL_Context.cpp
Diffstat (limited to 'ACE')
-rw-r--r-- | ACE/ace/SSL/SSL_Context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/SSL/SSL_Context.cpp b/ACE/ace/SSL/SSL_Context.cpp index b6bd64befbd..49dffd0bc8f 100644 --- a/ACE/ace/SSL/SSL_Context.cpp +++ b/ACE/ace/SSL/SSL_Context.cpp @@ -356,9 +356,9 @@ ACE_SSL_Context::filter_versions (const char* versionlist) (pos == vlist.length() - 7 || seplist.find(vlist[pos + 7]) != ACE_CString::npos); if (!match) - { + { ::SSL_CTX_set_options(this->context_, SSL_OP_NO_TLSv1_3); - } + } #endif /* SSL_OP_NO_TLSv1_3 */ return 0; } |