From: Stefan Eissing Date: Thu, 26 May 2022 08:10:37 +0000 (+0000) Subject: *) mod_md: resurrect r1898962 lost by a change merge. X-Git-Tag: 2.5.0-alpha2-ci-test-only~329 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4631db0a274022c9194561e6b8dd053a573f759e;p=thirdparty%2Fapache%2Fhttpd.git *) mod_md: resurrect r1898962 lost by a change merge. Thanks to Christophe for catching this. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1901271 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/md/md_store_fs.c b/modules/md/md_store_fs.c index ab43054ce58..4be7a0e818c 100644 --- a/modules/md/md_store_fs.c +++ b/modules/md/md_store_fs.c @@ -521,7 +521,8 @@ static apr_status_t mk_group_dir(const char **pdir, md_store_fs_t *s_fs, } cleanup: if (APR_SUCCESS != rv) { - md_log_perror(MD_LOG_MARK, MD_LOG_ERR, rv, p, "mk_group_dir %d %s", group, name); + md_log_perror(MD_LOG_MARK, MD_LOG_ERR, rv, p, "mk_group_dir %d %s", + group, (*pdir? *pdir : (name? name : "(null)"))); } return rv; }