Juan Lang : crypt32/tests: Fix test failures on NT4/Win9x.
Module: wine Branch: master Commit: 3e437ec537fa9df23cc1b3f3e906dc0ea4f29ebb URL: http://source.winehq.org/git/wine.git/?a=commit;h=3e437ec537fa9df23cc1b3f3e9... Author: Juan Lang <juan.lang(a)gmail.com> Date: Wed Oct 6 09:45:02 2010 -0700 crypt32/tests: Fix test failures on NT4/Win9x. --- dlls/crypt32/tests/chain.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/crypt32/tests/chain.c b/dlls/crypt32/tests/chain.c index b6a01bf..5037a76 100644 --- a/dlls/crypt32/tests/chain.c +++ b/dlls/crypt32/tests/chain.c @@ -3852,7 +3852,7 @@ static const ChainPolicyCheck ignoredBadDateNestingBasePolicyCheck = { static const ChainPolicyCheck ignoredInvalidDateBasePolicyCheck = { { sizeof(googleChain) / sizeof(googleChain[0]), googleChain }, - { 0, CERT_E_EXPIRED, 0, 1, NULL}, NULL, TODO_ELEMENTS + { 0, CERT_E_EXPIRED, 0, 1, NULL}, &badDateNestingStatus, TODO_ELEMENTS }; static const ChainPolicyCheck ignoredInvalidUsageBasePolicyCheck = { @@ -3964,7 +3964,7 @@ static const ChainPolicyCheck stanfordPolicyCheckWithoutMatchingName = { static const ChainPolicyCheck invalidExtensionPolicyCheck = { { sizeof(chain30) / sizeof(chain30[0]), chain30 }, - { 0, CERT_E_CRITICAL, 0, 1, NULL}, NULL, 0 + { 0, CERT_E_CRITICAL, 0, 1, NULL}, &badDateNestingStatus, 0 }; static const ChainPolicyCheck authenticodePolicyCheck[] = {
participants (1)
-
Alexandre Julliard