diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/md/md_acme_authz.c | 3 | ||||
-rw-r--r-- | modules/md/md_version.h | 4 | ||||
-rw-r--r-- | modules/md/mod_md_status.c | 2 |
3 files changed, 4 insertions, 5 deletions
diff --git a/modules/md/md_acme_authz.c b/modules/md/md_acme_authz.c index f4579b366b..fc46274fff 100644 --- a/modules/md/md_acme_authz.c +++ b/modules/md/md_acme_authz.c @@ -263,9 +263,8 @@ static apr_status_t cha_http_01_setup(md_acme_authz_cha_t *cha, md_acme_authz_t rv = md_store_load(store, MD_SG_CHALLENGES, authz->domain, MD_FN_HTTP01, MD_SV_TEXT, (void**)&data, p); if ((APR_SUCCESS == rv && strcmp(cha->key_authz, data)) || APR_STATUS_IS_ENOENT(rv)) { - const char *content = apr_psprintf(p, "%s\n", cha->key_authz); rv = md_store_save(store, p, MD_SG_CHALLENGES, authz->domain, MD_FN_HTTP01, - MD_SV_TEXT, (void*)content, 0); + MD_SV_TEXT, (void*)cha->key_authz, 0); notify_server = 1; } diff --git a/modules/md/md_version.h b/modules/md/md_version.h index 3e2914d6b6..326b74cf25 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.28" +#define MOD_MD_VERSION "2.4.29" /** * @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 0x02041c +#define MOD_MD_VERSION_NUM 0x02041d #define MD_ACME_DEF_URL "https://acme-v02.api.letsencrypt.org/directory" #define MD_TAILSCALE_DEF_URL "file://localhost/var/run/tailscale/tailscaled.sock" diff --git a/modules/md/mod_md_status.c b/modules/md/mod_md_status.c index 6b29256b67..033628f267 100644 --- a/modules/md/mod_md_status.c +++ b/modules/md/mod_md_status.c @@ -617,7 +617,7 @@ static void si_val_stapling(status_ctx *ctx, md_json_t *mdj, const status_info * apr_brigade_puts(ctx->bb, NULL, NULL, "on"); } else { - apr_brigade_printf(ctx->bb, NULL, NULL, "%s: on", ctx->prefix); + apr_brigade_printf(ctx->bb, NULL, NULL, "%sStapling: on\n", ctx->prefix); } } |