From: Fabian Keil <fk@fabiankeil.de>
Date: Mon, 10 Aug 2020 15:55:15 +0000 (+0200)
Subject: get_block_reason_statistics_table(): Add new lines between table rows
X-Git-Tag: v_3_0_29~224
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/%22javascript:back()/@default-cgi@show-status?a=commitdiff_plain;h=965bb64d8cd49d60a5678172e73190e96ec02f48;p=privoxy.git

get_block_reason_statistics_table(): Add new lines between table rows

Sponsored by: Robert Klemme
---

diff --git a/cgisimple.c b/cgisimple.c
index e738a605..0077e7c4 100644
--- a/cgisimple.c
+++ b/cgisimple.c
@@ -1087,7 +1087,7 @@ static char *get_block_reason_statistics_table(const struct client_state *csp)
             }
             get_block_reason_count(block_reason, &count);
             snprintf(buf, sizeof(buf),
-               "<tr><td>%s</td><td style=\"text-align: right\">%llu</td>",
+               "<tr><td>%s</td><td style=\"text-align: right\">%llu</td>\n",
                encoded_block_reason, count);
             freez(encoded_block_reason);