From 24ddaef1c3165b36287024dcf4cb4a8a71e0bcc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Uhliarik?= Date: Tue, 21 Jun 2022 14:13:26 +0200 Subject: [PATCH] Related: #2028781 - Protocol : TLSv1.3 missing in rhel9 - fix typo in preprocesor macro if -> ifdef --- 0007-Enable-TLSv1.3-by-default.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0007-Enable-TLSv1.3-by-default.patch b/0007-Enable-TLSv1.3-by-default.patch index 18a9a59..c8bac0b 100644 --- a/0007-Enable-TLSv1.3-by-default.patch +++ b/0007-Enable-TLSv1.3-by-default.patch @@ -90,7 +90,7 @@ index f813458..2e6a6c0 100644 + + /* Now, we have to scan for minimal protocol version, + *without allowing holes between min and max*/ -+#if SSL_OP_NO_TLSv1_3 ++#ifdef SSL_OP_NO_TLSv1_3 + if ((prot == TLS1_3_VERSION) && (protocols & NGX_SSL_TLSv1_2)) { + prot = TLS1_2_VERSION; + }