Skip to content

Commit

Permalink
*) mod_md: change log level from error to debug when MDStapling
Browse files Browse the repository at this point in the history
     is enabled but a certificate carries no OCSP url.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1922429 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
icing committed Dec 11, 2024
1 parent 71a7109 commit 4a9cd1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/md/md_ocsp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions modules/md/md_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
* @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
* Numerical representation of the version number of the md module
* 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"
Expand Down

0 comments on commit 4a9cd1f

Please sign in to comment.