From: Ian Puleston Date: Thu, 30 Mar 2023 20:04:50 +0000 (-0700) Subject: ITS#10035 Fix setting TLSv1.3 ciphersuite X-Git-Tag: OPENLDAP_REL_ENG_2_6_5~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=67164c7b6195455265f437f46d56bfce78d9712e;p=thirdparty%2Fopenldap.git ITS#10035 Fix setting TLSv1.3 ciphersuite --- diff --git a/libraries/libldap/tls_o.c b/libraries/libldap/tls_o.c index 0a74ffa7f9..8f1d84efa1 100644 --- a/libraries/libldap/tls_o.c +++ b/libraries/libldap/tls_o.c @@ -335,7 +335,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 ); } } }