Fixing trace logging printf to have the correct args now that we number certs.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1887965 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/modules/md/md_reg.c b/modules/md/md_reg.c
index 19e5dbe..ca964c4 100644
--- a/modules/md/md_reg.c
+++ b/modules/md/md_reg.c
@@ -637,7 +637,6 @@
     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 @@
             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));
             }