Commit 443fdf27 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

crypt32: Merge two traces.

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