Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
15 lines
567 B
Diff
15 lines
567 B
Diff
diff --git a/dlls/crypt32/unixlib.c b/dlls/crypt32/unixlib.c
|
|
index 7cb521eb98b..5804b88be84 100644
|
|
--- a/dlls/crypt32/unixlib.c
|
|
+++ b/dlls/crypt32/unixlib.c
|
|
@@ -654,6 +654,10 @@ static void load_root_certs(void)
|
|
|
|
for (i = 0; i < ARRAY_SIZE(CRYPT_knownLocations) && list_empty(&root_cert_list); i++)
|
|
import_certs_from_path( CRYPT_knownLocations[i], TRUE );
|
|
+
|
|
+ char *nix_cert_file = getenv("NIX_SSL_CERT_FILE");
|
|
+ if (nix_cert_file != NULL)
|
|
+ import_certs_from_path(nix_cert_file, TRUE);
|
|
}
|
|
|
|
static NTSTATUS enum_root_certs( void *args )
|