crypt32: Add to error message to track down NT4 failures.
This commit is contained in:
parent
5618fdb3df
commit
79c39e379f
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue