Commit 98d7826d authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

crypt32/tests: Fix a typo in a comment.

parent edf88aa9
...@@ -391,7 +391,7 @@ static void testRegStoreSavedCerts(void) ...@@ -391,7 +391,7 @@ static void testRegStoreSavedCerts(void)
cert1 = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert, sizeof(bigCert)); cert1 = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert, sizeof(bigCert));
ok (cert1 != NULL, "Create cert context failed at %ld, %lx\n", i, GetLastError()); ok (cert1 != NULL, "Create cert context failed at %ld, %lx\n", i, GetLastError());
ret = CertAddCertificateContextToStore(store, cert1, CERT_STORE_ADD_REPLACE_EXISTING, NULL); ret = CertAddCertificateContextToStore(store, cert1, CERT_STORE_ADD_REPLACE_EXISTING, NULL);
/* Addittional skip per Win7, it allows opening HKLM store, but disallows adding certs */ /* Additional skip per Win7, it allows opening HKLM store, but disallows adding certs */
err = GetLastError(); err = GetLastError();
if (!ret) if (!ret)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment