wintrust/tests: Fix a typo in ok() messages

Andrey Gusev andrey.goosev at gmail.com
Sun May 1 03:55:42 CDT 2016


-------------- next part --------------
From 8075cee54b9391efec408dfa59bfbe6a0115d908 Mon Sep 17 00:00:00 2001
Message-Id: <8075cee54b9391efec408dfa59bfbe6a0115d908.1462091552.git.andrey.goosev at gmail.com>
From: Andrey Gusev <andrey.goosev at gmail.com>
Date: Sun, 1 May 2016 11:28:25 +0300
Subject: [PATCH] wintrust/tests: Fix a typo in ok() messages

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/wintrust/tests/crypt.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/wintrust/tests/crypt.c b/dlls/wintrust/tests/crypt.c
index d7e76b1..cfed53b 100644
--- a/dlls/wintrust/tests/crypt.c
+++ b/dlls/wintrust/tests/crypt.c
@@ -1233,21 +1233,21 @@ static void test_sip(void)
     ok(ret, "CryptSIPRetrieveSubjectGuid failed (%x)\n", GetLastError());
 
     ret = pPutSignedDataMsg(&info, X509_ASN_ENCODING, &index, 4, (BYTE*)"test");
-    ok(!ret, "CryptSIPPutSignedDataMsg succeedded\n");
+    ok(!ret, "CryptSIPPutSignedDataMsg succeeded\n");
     index = GetLastError();
     ok(index == ERROR_PATH_NOT_FOUND, "GetLastError returned %x\n", index);
 
     info.hFile = file;
     info.pwsFileName = nameW;
     ret = pPutSignedDataMsg(&info, X509_ASN_ENCODING, &index, 4, (BYTE*)"test");
-    ok(!ret, "CryptSIPPutSignedDataMsg succeedded\n");
+    ok(!ret, "CryptSIPPutSignedDataMsg succeeded\n");
     index = GetLastError();
     todo_wine ok(index == ERROR_INVALID_PARAMETER, "GetLastError returned %x\n", index);
 
     info.hFile = INVALID_HANDLE_VALUE;
     info.pwsFileName = nameW;
     ret = pPutSignedDataMsg(&info, X509_ASN_ENCODING, &index, 4, (BYTE*)"test");
-    ok(!ret, "CryptSIPPutSignedDataMsg succeedded\n");
+    ok(!ret, "CryptSIPPutSignedDataMsg succeeded\n");
     index = GetLastError();
     ok(index == ERROR_SHARING_VIOLATION, "GetLastError returned %x\n", index);
 
-- 
2.5.5



More information about the wine-patches mailing list