Module: wine Branch: master Commit: 8d72b37dace3ff57d1ff2d302db8b4f7bc5aaaed URL: http://source.winehq.org/git/wine.git/?a=commit;h=8d72b37dace3ff57d1ff2d302d...
Author: Juan Lang juan.lang@gmail.com Date: Wed Nov 4 16:52:47 2009 -0800
cryptui/tests: Fix typos.
---
dlls/cryptui/tests/cryptui.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/cryptui/tests/cryptui.c b/dlls/cryptui/tests/cryptui.c index 8d15b7f..996df0e 100644 --- a/dlls/cryptui/tests/cryptui.c +++ b/dlls/cryptui/tests/cryptui.c @@ -559,7 +559,7 @@ static void test_crypt_ui_wiz_import(void) crl = CertEnumCRLsInStore(store, crl); if (crl) count++; - } while (cert); + } while (crl); ok(count == 1, "expected 1 CRL, got %d\n", count); } CertCloseStore(store, 0); @@ -595,7 +595,7 @@ static void test_crypt_ui_wiz_import(void) crl = CertEnumCRLsInStore(store, crl); if (crl) count++; - } while (cert); + } while (crl); ok(count == 0, "expected 0 CRLs, got %d\n", count); } SetLastError(0xdeadbeef); @@ -635,7 +635,7 @@ static void test_crypt_ui_wiz_import(void) crl = CertEnumCRLsInStore(store, crl); if (crl) count++; - } while (cert); + } while (crl); ok(count == 1, "expected 1 CRL, got %d\n", count); } SetLastError(0xdeadbeef);