From d0f6755b53c016538fce8095297e703ea211ac7a Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Thu, 14 Feb 2008 10:28:41 -0800 Subject: [PATCH] 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, 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", -- 1.4.1