[openssl] master update

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


The branch master has been updated
       via  e6071f29c24cd22ac7857bf88917598265cc90a9 (commit)
      from  355b419698bd6f8db03cd79007fc0da1e757e794 (commit)


- Log -----------------------------------------------------------------
commit e6071f29c24cd22ac7857bf88917598265cc90a9
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)

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

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 b043ffc..3367366 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -1420,7 +1420,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