crypt32: Merge two traces.

This commit is contained in:
Francois Gouget 2009-02-17 18:49:07 +01:00 committed by Alexandre Julliard
parent 63303048c4
commit 443fdf2731
1 changed files with 2 additions and 3 deletions

View File

@ -800,9 +800,8 @@ static void dump_element(PCCERT_CONTEXT cert)
TRACE_(chain)("issued to %s\n", debugstr_w(name));
CryptMemFree(name);
}
TRACE_(chain)("valid from %s",
debugstr_w(filetime_to_str(&cert->pCertInfo->NotBefore)));
TRACE_(chain)("to %s\n",
TRACE_(chain)("valid from %s to %s\n",
debugstr_w(filetime_to_str(&cert->pCertInfo->NotBefore)),
debugstr_w(filetime_to_str(&cert->pCertInfo->NotAfter)));
TRACE_(chain)("%d extensions\n", cert->pCertInfo->cExtension);
for (i = 0; i < cert->pCertInfo->cExtension; i++)