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

This commit is contained in:
Juan Lang 2008-02-14 10:28:41 -08:00 committed by Alexandre Julliard
parent 5618fdb3df
commit 79c39e379f
1 changed files with 2 additions and 2 deletions

View File

@ -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",