Jelajahi Sumber

Fix to allow build w/ OpenSSL >= 1.0.2a

This fix allows pyopenssl == 0.13 build against OpenSSL library headers >= 1.0.2a.

More information can be found here:

https://github.com/cloudera/hue/issues/205

Let me know if you have any questions!

Chris Stephens
Netflix, Inc
Chris Stephens 10 tahun lalu
induk
melakukan
a2d51acd03
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      desktop/core/ext-py/pyopenssl/OpenSSL/crypto/crl.c

+ 1 - 1
desktop/core/ext-py/pyopenssl/OpenSSL/crypto/crl.c

@@ -3,7 +3,7 @@
 #include "crypto.h"
 
 
-static X509_REVOKED * X509_REVOKED_dup(X509_REVOKED *orig) {
+X509_REVOKED * X509_REVOKED_dup(X509_REVOKED *orig) {
     X509_REVOKED *dupe = NULL;
 
     dupe = X509_REVOKED_new();