]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fixing trace logging printf to have the correct args now that we number certs.
authorStefan Eissing <icing@apache.org>
Tue, 23 Mar 2021 15:25:34 +0000 (15:25 +0000)
committerStefan Eissing <icing@apache.org>
Tue, 23 Mar 2021 15:25:34 +0000 (15:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1887965 13f79535-47bb-0310-9956-ffa450edef68

modules/md/md_reg.c

index 19e5dbefc910ede9f0aa88896891d17a7f56e2e8..ca964c4b7b230b9ed866db43ece49d5c51e11656 100644 (file)
@@ -637,7 +637,6 @@ apr_time_t md_reg_renew_at(md_reg_t *reg, const md_t *md, apr_pool_t *p)
     const md_pubcert_t *pub;
     const md_cert_t *cert;
     md_timeperiod_t certlife, renewal;
-    md_pkey_spec_t *spec;
     int i;
     apr_time_t renew_at = 0;
     apr_status_t rv;
@@ -654,8 +653,8 @@ apr_time_t md_reg_renew_at(md_reg_t *reg, const md_t *md, apr_pool_t *p)
             renewal = md_timeperiod_slice_before_end(&certlife, md->renew_window);
             if (md_log_is_level(p, MD_LOG_TRACE1)) {
                 md_log_perror(MD_LOG_MARK, MD_LOG_TRACE2, 0, p, 
-                              "md[%s]: certificate(%s) valid[%s] renewal[%s]", 
-                              md->name, md_pkey_spec_name(spec),  
+                              "md[%s]: certificate(%d) valid[%s] renewal[%s]", 
+                              md->name, i,  
                               md_timeperiod_print(p, &certlife),
                               md_timeperiod_print(p, &renewal));
             }