gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 113/116: openssl: fix boringssl build again


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 113/116: openssl: fix boringssl build again
Date: Tue, 05 Dec 2017 14:52:23 +0100

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

ng0 pushed a commit to branch master
in repository gnurl.

commit cd276c3cca4db23384f3272486468ce41b0a338b
Author: Daniel Stenberg <address@hidden>
AuthorDate: Mon Nov 27 19:39:09 2017 +0100

    openssl: fix boringssl build again
    
    commit d3ab7c5a21e broke the boringssl build since it doesn't have
    RSA_flags(), so we disable that code block for boringssl builds.
    
    Reported-by: W. Mark Kubacki
    Fixes #2117
---
 lib/vtls/openssl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c
index 9d3ea14ee..7b04edfd6 100644
--- a/lib/vtls/openssl.c
+++ b/lib/vtls/openssl.c
@@ -838,7 +838,7 @@ int cert_stuff(struct connectdata *conn,
       EVP_PKEY_free(pktmp);
     }
 
-#if !defined(OPENSSL_NO_RSA)
+#if !defined(OPENSSL_NO_RSA) && !defined(OPENSSL_IS_BORINGSSL)
     {
       /* If RSA is used, don't check the private key if its flags indicate
        * it doesn't support it. */

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



reply via email to

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