Francois Gouget : crypt32: Merge two traces.

Alexandre Julliard julliard at winehq.org
Wed Feb 18 10:15:22 CST 2009


Module: wine
Branch: master
Commit: 443fdf2731d1ff528e7cf1f6812cb65c7b211216
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=443fdf2731d1ff528e7cf1f6812cb65c7b211216

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Feb 17 18:49:07 2009 +0100

crypt32: Merge two traces.

---

 dlls/crypt32/chain.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/crypt32/chain.c b/dlls/crypt32/chain.c
index dce06b7..5943117 100644
--- a/dlls/crypt32/chain.c
+++ b/dlls/crypt32/chain.c
@@ -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++)




More information about the wine-cvs mailing list