[openssl] OpenSSL_1_1_1-stable update

matthias.st.pierre at ncp-e.com matthias.st.pierre at ncp-e.com
Thu Jun 6 13:55:46 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  7818cd368c532e46d3c41ac79dcab0bc02ea0b7a (commit)
      from  8f75443f993f874e6176e5440e5839392f874bd7 (commit)


- Log -----------------------------------------------------------------
commit 7818cd368c532e46d3c41ac79dcab0bc02ea0b7a
Author: Dr. Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
Date:   Thu Jun 6 13:28:29 2019 +0200

    Fix typo in macro argument of SSL_set1_client_sigalgs_list()
    
    Fixes #9092
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
    (Merged from https://github.com/openssl/openssl/pull/9093)
    
    (cherry picked from commit e6071f29c24cd22ac7857bf88917598265cc90a9)

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

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 f93dc68..5833547 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -1415,7 +1415,7 @@ DECLARE_PEM_rw(SSL_SESSION, SSL_SESSION)
 # define SSL_CTX_set1_client_sigalgs_list(ctx, s) \
         SSL_CTX_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)(s))
 # define SSL_set1_client_sigalgs(ctx, slist, slistlen) \
-        SSL_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS,clistlen,(int *)(slist))
+        SSL_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS,slistlen,(int *)(slist))
 # define SSL_set1_client_sigalgs_list(ctx, s) \
         SSL_ctrl(ctx,SSL_CTRL_SET_CLIENT_SIGALGS_LIST,0,(char *)(s))
 # define SSL_get0_certificate_types(s, clist) \


More information about the openssl-commits mailing list