Skip to content

Commit

Permalink
[Truffle] Fix for OpenSSL OCSP_NOCERTS flags compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Fish committed Nov 7, 2016
1 parent 52f208f commit ec02e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion truffle/src/main/c/openssl/ossl_ocsp.c
Expand Up @@ -340,7 +340,7 @@ ossl_ocspreq_sign(int argc, VALUE *argv, VALUE self)
flg = NIL_P(flags) ? 0 : NUM2INT(flags);
if(NIL_P(certs)){
x509s = sk_X509_new_null();
flags |= OCSP_NOCERTS;
flg |= OCSP_NOCERTS;
}
else x509s = ossl_x509_ary2sk(certs);
GetOCSPReq(self, req);
Expand Down

1 comment on commit ec02e80

@bjfish
Copy link
Contributor

@bjfish bjfish commented on ec02e80 Nov 7, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.