]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/ssl/ssl_engine_init.c (ssl_init_ctx_cert_chain): Log the
authorJoe Orton <jorton@apache.org>
Tue, 15 Dec 2020 09:52:43 +0000 (09:52 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 15 Dec 2020 09:52:43 +0000 (09:52 +0000)
  OpenSSL errors if CA certs cannot be loaded.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1884452 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_init.c

index 2bd0502fbb5306143a69e7ee802f72ebea81cc1a..bcb8c8aca1598fe7a849183a6fd15e10023c2e1e 100644 (file)
@@ -1161,7 +1161,9 @@ static apr_status_t ssl_init_ctx_crl(server_rec *s,
 /*
  * Read a file that optionally contains the server certificate in PEM
  * format, possibly followed by a sequence of CA certificates that
- * should be sent to the peer in the SSL Certificate message.
+ * should be sent to the peer in the SSL Certificate message.  Returns
+ * 0 on success, otherwise the OpenSSL error stack contents should be
+ * reported.
  */
 static int use_certificate_chain(
     SSL_CTX *ctx, char *file, int skipfirst, pem_password_cb *cb)
@@ -1258,6 +1260,7 @@ static apr_status_t ssl_init_ctx_cert_chain(server_rec *s,
     if (n < 0) {
         ap_log_error(APLOG_MARK, APLOG_EMERG, 0, s, APLOGNO(01903)
                 "Failed to configure CA certificate chain!");
+        ssl_log_ssl_error(SSLLOG_MARK, APLOG_EMERG, s);
         return ssl_die(s);
     }