Commit 79c39e37 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

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

parent 5618fdb3
......@@ -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",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment