From: Vsevolod Stakhov Date: Wed, 23 Sep 2015 18:31:11 +0000 (+0100) Subject: Fix piechart clean slice. X-Git-Tag: 1.0.3~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aea4474a10cafb54da4c5d5c1b508ec7adb239ef;p=thirdparty%2Frspamd.git Fix piechart clean slice. Issue: #380 --- diff --git a/src/controller.c b/src/controller.c index 7005965719..f21e3c51a0 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];