-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools/MINGW-packages: openssl fix for DST Root CA X3 Expiry
This works for anything that links against mingw64-openssl (Natron), but not for msys2-openssl, so we need to add a workaround in .curlrc for pacman to work.
- Loading branch information
Showing
3 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
tools/MINGW-packages/mingw-w64-openssl10/openssl-1.0.2u-trusted.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- crypto/x509/x509_vfy.c.orig 2021-10-09 19:28:59.204235900 +0200 | ||
+++ crypto/x509/x509_vfy.c 2021-10-09 19:30:25.248722900 +0200 | ||
@@ -256,7 +256,7 @@ | ||
/* | ||
* If asked see if we can find issuer in trusted store first | ||
*/ | ||
- if (ctx->param->flags & X509_V_FLAG_TRUSTED_FIRST) { | ||
+ if (X509_V_FLAG_TRUSTED_FIRST) { | ||
ok = ctx->get_issuer(&xtmp, ctx, x); | ||
if (ok < 0) { | ||
ctx->error = X509_V_ERR_STORE_LOOKUP; |