summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2021-04-17 08:07:19 (GMT)
committerGitHub <noreply@github.com>2021-04-17 08:07:19 (GMT)
commitb467d9a24011992242c95d9157d3455f8a84466b (patch)
treeef3a885c3c2384130cc3873e9b14c744b6fd19d2 /Misc/NEWS.d
parentcfaa2d338bd72af63a35a424515b47a183cefc14 (diff)
downloadcpython-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.rst1
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*.