浏览代码

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 年之前
父节点
当前提交
a2d51ac
共有 1 个文件被更改,包括 1 次插入1 次删除
  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();