diff options
author | Alexandru Ardelean <ardeleanalex@gmail.com> | 2019-09-11 17:23:28 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-11 17:23:28 (GMT) |
commit | 0d63669e52dd7e95708ec14e9e3e07d7dc9cd913 (patch) | |
tree | c11433638b6ffd7bd89f64226f022578c82c7ae5 /Modules | |
parent | f9db011c323556ec68761263c6b91b2f75ca95ba (diff) | |
download | cpython-0d63669e52dd7e95708ec14e9e3e07d7dc9cd913.zip cpython-0d63669e52dd7e95708ec14e9e3e07d7dc9cd913.tar.gz cpython-0d63669e52dd7e95708ec14e9e3e07d7dc9cd913.tar.bz2 |
[2.7] bpo-35264: Modules/_ssl.c: fix build with OpenSSL 1.1.0 (GH-10570)
Fixes a build error with OpenSSL 1.1.0. There is already code in the
`_ssl.c` that handles all the weird cases of the NPN config macros (with
various OpenSSL & LibreSSL versions).
That code will provide a HAVE_NPN variable, which should be used in the
rest of the code to check whether (or what) to compile regarding NPN.
This change adds HAVE_NPN in the remaining places where it should have been
placed.
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
https://bugs.python.org/issue35264
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 93b635c..98c8a5a 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -1590,7 +1590,7 @@ static PyObject *PySSL_version(PySSLSocket *self) return PyUnicode_FromString(version); } -#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) +#if HAVE_NPN static PyObject *PySSL_selected_npn_protocol(PySSLSocket *self) { const unsigned char *out; unsigned int outlen; @@ -2118,7 +2118,7 @@ static PyMethodDef PySSLMethods[] = { PySSL_peercert_doc}, {"cipher", (PyCFunction)PySSL_cipher, METH_NOARGS}, {"version", (PyCFunction)PySSL_version, METH_NOARGS}, -#ifdef OPENSSL_NPN_NEGOTIATED +#if HAVE_NPN {"selected_npn_protocol", (PyCFunction)PySSL_selected_npn_protocol, METH_NOARGS}, #endif #if HAVE_ALPN |