Skip to content

Commit 3817732

Browse files
committed
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
1 parent 83771f5 commit 3817732

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/md/md_ocsp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ apr_status_t md_ocsp_prime(md_ocsp_reg_t *reg, const char *ext_id, apr_size_t ex
334334
"md[%s]: getting ocsp responder from cert", name);
335335
rv = md_cert_get_ocsp_responder_url(&ostat->responder_url, reg->p, cert);
336336
if (APR_SUCCESS != rv) {
337-
md_log_perror(MD_LOG_MARK, MD_LOG_ERR, rv, reg->p,
337+
md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, rv, reg->p,
338338
"md[%s]: certificate with serial %s has no OCSP responder URL",
339339
name, md_cert_get_serial_number(cert, reg->p));
340340
goto cleanup;

modules/md/md_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
* @macro
2828
* Version number of the md module as c string
2929
*/
30-
#define MOD_MD_VERSION "2.4.29"
30+
#define MOD_MD_VERSION "2.4.30"
3131

3232
/**
3333
* @macro
3434
* Numerical representation of the version number of the md module
3535
* release. This is a 24 bit number with 8 bits for major number, 8 bits
3636
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
3737
*/
38-
#define MOD_MD_VERSION_NUM 0x02041d
38+
#define MOD_MD_VERSION_NUM 0x02041e
3939

4040
#define MD_ACME_DEF_URL "https://acme-v02.api.letsencrypt.org/directory"
4141
#define MD_TAILSCALE_DEF_URL "file://localhost/var/run/tailscale/tailscaled.sock"

0 commit comments

Comments
 (0)