aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509/x509_d2.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/x509/x509_d2.c')
-rw-r--r--crypto/x509/x509_d2.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/x509/x509_d2.c b/crypto/x509/x509_d2.c
index 7838b703d4..2b410b5e35 100644
--- a/crypto/x509/x509_d2.c
+++ b/crypto/x509/x509_d2.c
@@ -30,6 +30,11 @@ int X509_STORE_set_default_paths_ex(X509_STORE *ctx, OSSL_LIB_CTX *libctx,
lookup = X509_STORE_add_lookup(ctx, X509_LOOKUP_store());
if (lookup == NULL)
return 0;
+ /*
+ * The NULL URI argument will activate any default URIs (presently none),
+ * DO NOT pass the default CApath or CAfile, they're already handled above,
+ * likely much more efficiently.
+ */
X509_LOOKUP_add_store_ex(lookup, NULL, libctx, propq);
/* clear any errors */