You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2022/05/26 08:10:37 UTC

svn commit: r1901271 - /httpd/httpd/trunk/modules/md/md_store_fs.c

Author: icing
Date: Thu May 26 08:10:37 2022
New Revision: 1901271

URL: http://svn.apache.org/viewvc?rev=1901271&view=rev
Log:
  *) mod_md: resurrect r1898962 lost by a change merge.
     Thanks to Christophe for catching this.


Modified:
    httpd/httpd/trunk/modules/md/md_store_fs.c

Modified: httpd/httpd/trunk/modules/md/md_store_fs.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/md/md_store_fs.c?rev=1901271&r1=1901270&r2=1901271&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/md/md_store_fs.c (original)
+++ httpd/httpd/trunk/modules/md/md_store_fs.c Thu May 26 08:10:37 2022
@@ -521,7 +521,8 @@ static apr_status_t mk_group_dir(const c
     }
 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;
 }