From 73b357484d54fcdb7c97492ad8b4d78dcfaf4f7e Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sat, 2 May 2015 18:00:10 +0100 Subject: [PATCH] output: remove empty element from xml Signed-off-by: Sami Kerola --- src/output.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/output.c b/src/output.c index 679a089..1865266 100644 --- a/src/output.c +++ b/src/output.c @@ -264,12 +264,8 @@ int output_xml(void) } else { fprintf(outfile, "\t\n"); } - - fprintf(outfile, "\t\n"); - fprintf(outfile, "\t\n"); fprintf(outfile, "\t%s ", ntop_ipaddr(&range_p->first_ip)); fprintf(outfile, "- %s\n", ntop_ipaddr(&range_p->last_ip)); - fprintf(outfile, "\t\n"); fprintf(outfile, "\t%g\n", range_size); fprintf(outfile, "\t%g\n", range_p->count); fprintf(outfile, "\t%g\n", range_size - range_p->count);