diff options
author | Stefan Eissing <icing@apache.org> | 2019-06-25 10:56:57 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2019-06-25 10:56:57 +0200 |
commit | 5d2583a0f44ded24be9b19a657f6554b1a78a5ef (patch) | |
tree | fe48cec30f3e8a8d0d02c9251a47c965e2a82f64 /modules/md/md_status.c | |
parent | * modules/dav/main/props.c (dav_do_prop_subreq): Allocate escaped URI (diff) | |
download | apache2-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.c | 2 |
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; } |