]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-113332: Simplify calls to SSL_(CTX_)set_verify in _ssl.c (#113333)
authorDavid Benjamin <davidben@google.com>
Tue, 26 Dec 2023 21:35:41 +0000 (16:35 -0500)
committerGitHub <noreply@github.com>
Tue, 26 Dec 2023 21:35:41 +0000 (16:35 -0500)
commitaf2b8f6845e31dd6ab3bb0bac41b19a0e023fd61
tree48461c96900b9c613ffa2a6af604b736b0fc9691
parent2b53c767de0a7afd29598a87da084d0e125e1c34
gh-113332: Simplify calls to SSL_(CTX_)set_verify in _ssl.c (#113333)

_ssl.c currently tries to preserve the verification callback, but at no
point does it ever set one. Just pass in NULL.
Modules/_ssl.c