Nicolas Le Cam : crypt32/tests: Fix a failing test on win2000.

Alexandre Julliard julliard at winehq.org
Tue Nov 11 08:35:45 CST 2008


Module: wine
Branch: master
Commit: ed364027e7c352904a5fb4f0cafb947daf4321bf
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ed364027e7c352904a5fb4f0cafb947daf4321bf

Author: Nicolas Le Cam <niko.lecam at gmail.com>
Date:   Mon Nov 10 18:44:40 2008 +0100

crypt32/tests: Fix a failing test on win2000.

---

 dlls/crypt32/tests/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/tests/main.c b/dlls/crypt32/tests/main.c
index 67d4725..7a7d458 100644
--- a/dlls/crypt32/tests/main.c
+++ b/dlls/crypt32/tests/main.c
@@ -452,7 +452,7 @@ static void test_format_object(void)
         ret = pCryptFormatObject(X509_ASN_ENCODING, 0, 0, NULL, NULL,
          encodedBigInt, sizeof(encodedBigInt), str, &size);
         ok(ret, "CryptFormatObject failed: %d\n", GetLastError());
-        ok(!lstrcmpW(str, encodedBigIntStr), "unexpected format string\n");
+        ok(!lstrcmpiW(str, encodedBigIntStr), "unexpected format string\n");
         HeapFree(GetProcessHeap(), 0, str);
     }
     /* When called with the default encoding type for any undefined struct




More information about the wine-cvs mailing list