Juan Lang : crypt32: Add to error message to track down NT4 failures.

Alexandre Julliard julliard at winehq.org
Sat Feb 16 09:57:20 CST 2008


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

Author: Juan Lang <juan.lang at gmail.com>
Date:   Thu Feb 14 10:28:41 2008 -0800

crypt32: Add to error message to track down NT4 failures.

---

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

diff --git a/dlls/crypt32/tests/cert.c b/dlls/crypt32/tests/cert.c
index cb3de1c..a31632b 100644
--- a/dlls/crypt32/tests/cert.c
+++ b/dlls/crypt32/tests/cert.c
@@ -326,8 +326,8 @@ static void checkHash(const BYTE *data, DWORD dataLen, ALG_ID algID,
     ok(ret, "CryptHashCertificate failed: %08x\n", GetLastError());
     ret = CertGetCertificateContextProperty(context, propID, NULL,
      &dwSizeWithNull);
-    ok(ret, "CertGetCertificateContextProperty failed: %08x\n",
-     GetLastError());
+    ok(ret, "algID %08x, propID %d: CertGetCertificateContextProperty failed: %08x\n",
+     algID, propID, GetLastError());
     ret = CertGetCertificateContextProperty(context, propID, hashProperty,
      &size);
     ok(ret, "CertGetCertificateContextProperty failed: %08x\n",




More information about the wine-cvs mailing list