From 2f7c31678a85f599af30b983ecb8321f225c3f15 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Thu, 9 Jan 2014 20:07:41 +0100 Subject: [PATCH] Remove conditional: it is useless at this point (OpenSSL headers are not yet included) --- Modules/_ssl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 8789d00fe0..c34b200088 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -70,9 +70,7 @@ enum py_ssl_cert_requirements { }; enum py_ssl_version { -#ifndef OPENSSL_NO_SSL2 PY_SSL_VERSION_SSL2, -#endif PY_SSL_VERSION_SSL3=1, PY_SSL_VERSION_SSL23, PY_SSL_VERSION_TLS1 -- 2.40.0