Juan Lang : crypt32: Fix expected/got mixup.

Alexandre Julliard julliard at winehq.org
Sat Oct 18 13:38:24 CDT 2008


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

Author: Juan Lang <juan.lang at gmail.com>
Date:   Thu Oct 16 17:35:19 2008 -0700

crypt32: Fix expected/got mixup.

---

 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 772da0f..530a03d 100644
--- a/dlls/crypt32/tests/chain.c
+++ b/dlls/crypt32/tests/chain.c
@@ -1212,8 +1212,8 @@ static void checkSimpleChainStatus(const CERT_SIMPLE_CHAIN *simpleChain,
         DWORD i;
 
         for (i = 0; i < simpleChain->cElement; i++)
-            checkElementStatus(&simpleChain->rgpElement[i]->TrustStatus,
-             &simpleChainStatus->rgElementStatus[i], ignore, todo, testIndex,
+            checkElementStatus(&simpleChainStatus->rgElementStatus[i],
+             &simpleChain->rgpElement[i]->TrustStatus, ignore, todo, testIndex,
              chainIndex, i);
     }
 }




More information about the wine-cvs mailing list