get_default_verify_paths doesn't belong inside the ifdef block

This commit is contained in:
Christian Heimes 2013-06-09 18:29:54 +02:00
parent 3e738f97f8
commit 142ec2c014
1 changed files with 1 additions and 1 deletions

View File

@ -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 */
};