crypt32/tests: Fix a typo in a comment.

This commit is contained in:
Francois Gouget 2023-01-30 05:30:14 +01:00 committed by Alexandre Julliard
parent edf88aa9df
commit 98d7826d0e

View file

@ -391,7 +391,7 @@ static void testRegStoreSavedCerts(void)
cert1 = CertCreateCertificateContext(X509_ASN_ENCODING, bigCert, sizeof(bigCert));
ok (cert1 != NULL, "Create cert context failed at %ld, %lx\n", i, GetLastError());
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();
if (!ret)
{