From 98d7826d0e2c9d29eaffd69b77eaf04d08cbda8c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 30 Jan 2023 05:30:14 +0100 Subject: [PATCH] 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) {