Module: wine Branch: master Commit: 98d7826d0e2c9d29eaffd69b77eaf04d08cbda8c URL: https://gitlab.winehq.org/wine/wine/-/commit/98d7826d0e2c9d29eaffd69b77eaf04...
Author: Francois Gouget fgouget@free.fr Date: Mon Jan 30 05:30:14 2023 +0100
crypt32/tests: Fix a typo in a comment.
---
dlls/crypt32/tests/store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/crypt32/tests/store.c b/dlls/crypt32/tests/store.c index 20d10a110f9..8809c5048b4 100644 --- a/dlls/crypt32/tests/store.c +++ b/dlls/crypt32/tests/store.c @@ -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) {