From ddcf5214813008d25ea9b6de13dd3099e27e9718 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Marchal?= Date: Mon, 27 Dec 2010 12:30:11 +0000 Subject: [PATCH] Fix empty user reports If the user_report_limit was set, the limit was global to all the reports due to an inadvertendly deleted line in the source code. --- html.c | 1 + 1 file changed, 1 insertion(+) diff --git a/html.c b/html.c index 5918c4b..5c4ba85 100644 --- a/html.c +++ b/html.c @@ -252,6 +252,7 @@ void htmlrel(void) if(debug) { debuga(_("Making report: %s\n"),uinfo->id); } + count=0; while((buf=longline_read(fp_in,line))!=NULL) { getword_start(&gwarea,buf); -- 2.39.2