From: Stefan Eissing Date: Wed, 11 Dec 2024 12:44:56 +0000 (+0000) Subject: Merge /httpd/httpd/trunk:r1922429 X-Git-Tag: 2.4.63-candidate~70 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3817732131faf8f3e1b3f4595668d3e6285ebee0;p=thirdparty%2Fapache%2Fhttpd.git Merge /httpd/httpd/trunk:r1922429 *) mod_md: change log level from error to debug when MDStapling is enabled but a certificate carries no OCSP url. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1922430 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/md/md_ocsp.c b/modules/md/md_ocsp.c index 8276137c3e8..af2dd152936 100644 --- a/modules/md/md_ocsp.c +++ b/modules/md/md_ocsp.c @@ -334,7 +334,7 @@ apr_status_t md_ocsp_prime(md_ocsp_reg_t *reg, const char *ext_id, apr_size_t ex "md[%s]: getting ocsp responder from cert", name); rv = md_cert_get_ocsp_responder_url(&ostat->responder_url, reg->p, cert); if (APR_SUCCESS != rv) { - md_log_perror(MD_LOG_MARK, MD_LOG_ERR, rv, reg->p, + md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, rv, reg->p, "md[%s]: certificate with serial %s has no OCSP responder URL", name, md_cert_get_serial_number(cert, reg->p)); goto cleanup; diff --git a/modules/md/md_version.h b/modules/md/md_version.h index 326b74cf256..2304194b993 100644 --- a/modules/md/md_version.h +++ b/modules/md/md_version.h @@ -27,7 +27,7 @@ * @macro * Version number of the md module as c string */ -#define MOD_MD_VERSION "2.4.29" +#define MOD_MD_VERSION "2.4.30" /** * @macro @@ -35,7 +35,7 @@ * release. This is a 24 bit number with 8 bits for major number, 8 bits * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203. */ -#define MOD_MD_VERSION_NUM 0x02041d +#define MOD_MD_VERSION_NUM 0x02041e #define MD_ACME_DEF_URL "https://acme-v02.api.letsencrypt.org/directory" #define MD_TAILSCALE_DEF_URL "file://localhost/var/run/tailscale/tailscaled.sock"