From dd1af1a0b0d44780b9da95789135eb20de88969a Mon Sep 17 00:00:00 2001 From: Ian Puleston Date: Thu, 30 Mar 2023 13:04:50 -0700 Subject: [PATCH] ITS#10035 Fix setting TLSv1.3 ciphersuite --- libraries/libldap/tls_o.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/libldap/tls_o.c b/libraries/libldap/tls_o.c index 8b371e3aa9..d6405bc44c 100644 --- a/libraries/libldap/tls_o.c +++ b/libraries/libldap/tls_o.c @@ -333,7 +333,7 @@ tlso_ctx_cipher13( tlso_ctx *ctx, char *suites ) if ( !strncmp( ver, "TLSv", 4 ) && strncmp( ver+4, "1.3", 3 ) >= 0 ) { if ( tls13_suites[0] ) ts = tlso_stecpy( ts, ":", te ); - ts = tlso_stecpy( ts, sname, te ); + ts = tlso_stecpy( ts, nptr, te ); } } } -- 2.47.3