8d65e832f0
Emulators form a class by themselves. So, they should be moved to applications/.
16 lines
567 B
Diff
16 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 )
|