commit | 305626adb01f260260eeff1e835355296018d019 | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@divmod.com> | Sun Oct 31 20:51:17 2010 -0400 |
committer | Jean-Paul Calderone <exarkun@divmod.com> | Sun Oct 31 20:51:17 2010 -0400 |
tree | eb087735513e277f748afe028393dc5b8933ee85 | |
parent | 9389606d9a163692705791b89e8152aad4dd6d24 [diff] [blame] |
Try dynamically loading crypto_X509Name_New on Windows
diff --git a/OpenSSL/ssl/connection.c b/OpenSSL/ssl/connection.c index 0289876..0796352 100755 --- a/OpenSSL/ssl/connection.c +++ b/OpenSSL/ssl/connection.c
@@ -861,7 +861,7 @@ exception_from_error_queue(ssl_Error); return NULL; } - CA = (PyObject *)crypto_X509Name_New(CAName, 1); + CA = (PyObject *)new_x509name(CAName, 1); if (CA == NULL) { X509_NAME_free(CAName); Py_DECREF(CAList);