[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Mon Jun 25 15:17:20 UTC 2018


The branch master has been updated
       via  71419442a279a12c2e19a097b5c7e01c29d1fc9c (commit)
      from  fa339c69a6441ab79623c73f637e25018c735b49 (commit)


- Log -----------------------------------------------------------------
commit 71419442a279a12c2e19a097b5c7e01c29d1fc9c
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Jun 25 17:08:20 2018 +0200

    OpenSSL_add_ssl_algorithm-is-deprecated() is deprecated, make it so
    
    This function is documented to be deprecated since OpenSSL 1.1.0.  We
    need to make it so in openssl/ssl.h as well.
    
    Fixes #6565
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/6588)

-----------------------------------------------------------------------

Summary of changes:
 include/openssl/ssl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 280250a..943a8d6 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -1079,8 +1079,8 @@ size_t SSL_get_peer_finished(const SSL *s, void *buf, size_t count);
 # define SSL_VERIFY_CLIENT_ONCE          0x04
 # define SSL_VERIFY_POST_HANDSHAKE       0x08
 
-# define OpenSSL_add_ssl_algorithms()    SSL_library_init()
 # if OPENSSL_API_COMPAT < 0x10100000L
+#  define OpenSSL_add_ssl_algorithms()   SSL_library_init()
 #  define SSLeay_add_ssl_algorithms()    SSL_library_init()
 # endif
 


More information about the openssl-commits mailing list