21 lines
709 B
C
21 lines
709 B
C
--- libraries/libldap/tls_o.c.orig 2022-05-04 14:55:23 UTC
|
|
+++ libraries/libldap/tls_o.c
|
|
@@ -281,7 +281,7 @@ tlso_ctx_free ( tls_ctx *ctx )
|
|
SSL_CTX_free( c );
|
|
}
|
|
|
|
-#if OPENSSL_VERSION_NUMBER >= 0x10101000
|
|
+#if OPENSSL_VERSION_NUMBER >= 0x10101000 && !defined(OPENSSL_NO_TLS1_3)
|
|
static char *
|
|
tlso_stecpy( char *dst, const char *src, const char *end )
|
|
{
|
|
@@ -417,7 +417,7 @@ tlso_ctx_init( struct ldapoptions *lo, struct ldaptls
|
|
}
|
|
|
|
if ( lo->ldo_tls_ciphersuite ) {
|
|
-#if OPENSSL_VERSION_NUMBER >= 0x10101000
|
|
+#if OPENSSL_VERSION_NUMBER >= 0x10101000 && !defined(OPENSSL_NO_TLS1_3)
|
|
tlso_ctx_cipher13( ctx, lt->lt_ciphersuite );
|
|
#endif
|
|
if ( !SSL_CTX_set_cipher_list( ctx, lt->lt_ciphersuite ) )
|