gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 105/256: curl.h: CURLSSLBACKEND_WOLFSSL used wrong


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 105/256: curl.h: CURLSSLBACKEND_WOLFSSL used wrong value
Date: Fri, 06 Oct 2017 19:43:16 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 29c2bdee93e1d41306ec2cef34ab19fd0e6519ac
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Aug 30 10:04:00 2017 +0200

    curl.h: CURLSSLBACKEND_WOLFSSL used wrong value
    
    The CURLSSLBACKEND_WOLFSSL is supposed to be an alias for
    CURLSSLBACKEND_CYASSL, but used an erronous value. To reduce the risk
    for a similar mistake, define the backend aliases to use the enum values
    instead.
    
    Reported-by: Gisle Vanem
    Bug: https://curl.haxx.se/mail/lib-2017-08/0120.html
---
 include/curl/curl.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/curl/curl.h b/include/curl/curl.h
index 710e4beff..0f06d20aa 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -2244,9 +2244,9 @@ typedef enum {
 } curl_sslbackend;
 
 /* aliases for library clones and renames */
-#define CURLSSLBACKEND_LIBRESSL 1
-#define CURLSSLBACKEND_BORINGSSL 1
-#define CURLSSLBACKEND_WOLFSSL 6
+#define CURLSSLBACKEND_LIBRESSL CURLSSLBACKEND_OPENSSL
+#define CURLSSLBACKEND_BORINGSSL CURLSSLBACKEND_OPENSSL
+#define CURLSSLBACKEND_WOLFSSL CURLSSLBACKEND_CYASSL
 
 /* Information about the SSL library used and the respective internal SSL
    handle, which can be used to obtain further information regarding the

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



reply via email to

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