summaryrefslogtreecommitdiffstats
path: root/modules/md/md_status.c
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2019-06-25 10:56:57 +0200
committerStefan Eissing <icing@apache.org>2019-06-25 10:56:57 +0200
commit5d2583a0f44ded24be9b19a657f6554b1a78a5ef (patch)
treefe48cec30f3e8a8d0d02c9251a47c965e2a82f64 /modules/md/md_status.c
parent* modules/dav/main/props.c (dav_do_prop_subreq): Allocate escaped URI (diff)
downloadapache2-5d2583a0f44ded24be9b19a657f6554b1a78a5ef.tar.xz
apache2-5d2583a0f44ded24be9b19a657f6554b1a78a5ef.zip
mod_md: copy recent fixes, adding new sources to mod_md.dsp
Adding module to CMakeLists, needs testing. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1862041 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/md/md_status.c')
-rw-r--r--modules/md/md_status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/md/md_status.c b/modules/md/md_status.c
index 8aa1de2d57..4bdd508199 100644
--- a/modules/md/md_status.c
+++ b/modules/md/md_status.c
@@ -98,7 +98,7 @@ static apr_status_t get_staging_cert_json(md_json_t **pjson, apr_pool_t *p,
apr_status_t rv = APR_SUCCESS;
rv = md_pubcert_load(md_reg_store_get(reg), MD_SG_STAGING, md->name, &certs, p);
- if (APR_STATUS_IS_ENOENT(rv) || certs->nelts == 0) {
+ if (APR_STATUS_IS_ENOENT(rv)) {
rv = APR_SUCCESS;
goto leave;
}