slackware-current/source/ap/cups/cd84d7fde692237af4996d4a0e985a3eb4a293f0.patch
Patrick J Volkerding 5a04d2d705 Wed Sep 21 19:19:07 UTC 2022
ap/cups-2.4.2-x86_64-3.txz:  Rebuilt.
  Fixed crash when using the CUPS web setup interface:
  [PATCH] Fix OpenSSL crash bug - "tls" pointer wasn't cleared after freeing
  it (Issue #409).
  Thanks to MisterL, bryjen, and kjhambrick.
  Fixed an OpenSSL certificate loading issue:
  [PATCH] The OpenSSL code path wasn't loading the full certificate
  chain (Issue #465).
  Thanks to tmmukunn.
2022-09-22 06:59:46 +02:00

36 lines
1.4 KiB
Diff

From cd84d7fde692237af4996d4a0e985a3eb4a293f0 Mon Sep 17 00:00:00 2001
From: Michael R Sweet <michael.r.sweet@gmail.com>
Date: Mon, 5 Sep 2022 09:20:03 -0400
Subject: [PATCH] The OpenSSL code path wasn't loading the full certificate
chain (Issue #465)
---
CHANGES.md | 1 +
cups/tls-openssl.c | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
#diff --git a/CHANGES.md b/CHANGES.md
#index f96677675a..81aef4e680 100644
#--- a/CHANGES.md
#+++ b/CHANGES.md
#@@ -12,6 +12,7 @@ Changes in CUPS v2.4.3 (TBA)
# hostname (Issue #419)
# - Fixed an OpenSSL crash bug (Issue #409)
# - Fixed a potential SNMP OID value overflow issue (Issue #431)
#+- Fixed an OpenSSL certificate loading issue (Issue #465)
# - Look for default printer on network if needed (Issue ##452)
# - Now localize HTTP responses using the Content-Language value (Issue #426)
# - Raised file size limit for importing PPD via Web UI (Issue #433)
diff --git a/cups/tls-openssl.c b/cups/tls-openssl.c
index ceb3abaedc..acc10fc420 100644
--- a/cups/tls-openssl.c
+++ b/cups/tls-openssl.c
@@ -1055,7 +1055,7 @@ _httpTLSStart(http_t *http) // I - Connection to server
}
SSL_CTX_use_PrivateKey_file(context, keyfile, SSL_FILETYPE_PEM);
- SSL_CTX_use_certificate_file(context, crtfile, SSL_FILETYPE_PEM);
+ SSL_CTX_use_certificate_chain_file(context, crtfile);
}
// Set TLS options...