gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 35/163: schannel: add failf calls for client certif


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 35/163: schannel: add failf calls for client certificate failures
Date: Sun, 05 Aug 2018 12:36:01 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 45eefbd0ddebe9156195507f1d4f4ef238a33633
Author: ralcock <address@hidden>
AuthorDate: Thu May 24 16:00:19 2018 +0100

    schannel: add failf calls for client certificate failures
    
    Closes #2604
---
 lib/vtls/schannel.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/vtls/schannel.c b/lib/vtls/schannel.c
index edc2459b7..c50fd223a 100644
--- a/lib/vtls/schannel.c
+++ b/lib/vtls/schannel.c
@@ -439,6 +439,8 @@ schannel_connect_step1(struct connectdata *conn, int 
sockindex)
       result = get_cert_location(cert_path, &cert_store_name,
                                  &cert_store_path, &cert_thumbprint_str);
       if(result != CURLE_OK) {
+        failf(data, "schannel: Failed to get certificate location for %s",
+              cert_path);
         Curl_unicodefree(cert_path);
         return result;
       }
@@ -447,6 +449,8 @@ schannel_connect_step1(struct connectdata *conn, int 
sockindex)
                                  (HCRYPTPROV)NULL,
                                  cert_store_name, cert_store_path);
       if(!cert_store) {
+        failf(data, "schannel: Failed to open cert store %s %s",
+              cert_store_name, cert_store_path);
         Curl_unicodefree(cert_path);
         return CURLE_SSL_CONNECT_ERROR;
       }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]