]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix typo in macro argument of SSL_set1_client_sigalgs_list()
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Thu, 6 Jun 2019 11:28:29 +0000 (13:28 +0200)
committerDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Thu, 6 Jun 2019 11:28:31 +0000 (13:28 +0200)
Fixes #9092

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/9093)

include/openssl/ssl.h

index b043ffcd9e51854c8f9923f83b9fc7893b30f35e..3367366bd5002a0dfb3d87b853c6de67ac421ddc 100644 (file)
@@ -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) \