From aea4474a10cafb54da4c5d5c1b508ec7adb239ef Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 23 Sep 2015 19:31:11 +0100 Subject: [PATCH] Fix piechart clean slice. Issue: #380 --- src/controller.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/controller.c b/src/controller.c index 700596571..f21e3c51a 100644 --- a/src/controller.c +++ b/src/controller.c @@ -913,10 +913,8 @@ rspamd_controller_handle_pie_chart ( total = ctx->srv->stat->messages_scanned; if (total != 0) { - data[0] = ctx->srv->stat->actions_stat[METRIC_ACTION_NOACTION] / total * - 100.; - data[1] = ctx->srv->stat->actions_stat[METRIC_ACTION_SOFT_REJECT] / total * - 100.; + data[0] = ctx->srv->stat->actions_stat[METRIC_ACTION_NOACTION]; + data[1] = ctx->srv->stat->actions_stat[METRIC_ACTION_SOFT_REJECT]; data[2] = (ctx->srv->stat->actions_stat[METRIC_ACTION_ADD_HEADER] + ctx->srv->stat->actions_stat[METRIC_ACTION_REWRITE_SUBJECT]); data[3] = ctx->srv->stat->actions_stat[METRIC_ACTION_GREYLIST]; -- 2.39.5