diff options
author | Christian Heimes <christian@python.org> | 2021-04-17 08:07:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 08:07:19 (GMT) |
commit | b467d9a24011992242c95d9157d3455f8a84466b (patch) | |
tree | ef3a885c3c2384130cc3873e9b14c744b6fd19d2 /Misc/NEWS.d | |
parent | cfaa2d338bd72af63a35a424515b47a183cefc14 (diff) | |
download | cpython-b467d9a24011992242c95d9157d3455f8a84466b.zip cpython-b467d9a24011992242c95d9157d3455f8a84466b.tar.gz cpython-b467d9a24011992242c95d9157d3455f8a84466b.tar.bz2 |
bpo-43522: Fix SSLContext.hostname_checks_common_name (GH-24899)
Fix problem with ssl.SSLContext.hostname_checks_common_name. OpenSSL does not
copy hostflags from *struct SSL_CTX* to *struct SSL*.
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-03-16-22-37-32.bpo-43522.dhNwOu.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-03-16-22-37-32.bpo-43522.dhNwOu.rst b/Misc/NEWS.d/next/Library/2021-03-16-22-37-32.bpo-43522.dhNwOu.rst new file mode 100644 index 0000000..a17e1b4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-03-16-22-37-32.bpo-43522.dhNwOu.rst @@ -0,0 +1 @@ +Fix problem with :attr:`~ssl.SSLContext.hostname_checks_common_name`. OpenSSL does not copy hostflags from *struct SSL_CTX* to *struct SSL*. |