From 142ec2c0149995c8d2299eaf6eccec9c69d6110b Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sun, 9 Jun 2013 18:29:54 +0200 Subject: [PATCH] get_default_verify_paths doesn't belong inside the ifdef block --- Modules/_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c index f4cd38b139..999dd09533 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -2819,9 +2819,9 @@ static PyMethodDef PySSL_methods[] = { PySSL_RAND_egd_doc}, {"RAND_status", (PyCFunction)PySSL_RAND_status, METH_NOARGS, PySSL_RAND_status_doc}, +#endif {"get_default_verify_paths", (PyCFunction)get_default_verify_paths, METH_NOARGS, PySSL_get_default_verify_paths_doc}, -#endif {NULL, NULL} /* Sentinel */ }; -- 2.40.0