From: Vsevolod Stakhov Date: Mon, 19 Mar 2018 15:43:03 +0000 (+0000) Subject: [Minor] Some lua style fixes X-Git-Tag: 1.7.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5c77aed5ebc2dc096709a29ff9b10bfad326912;p=thirdparty%2Frspamd.git [Minor] Some lua style fixes --- diff --git a/lualib/rspamadm/rescore.lua b/lualib/rspamadm/rescore.lua index 87e0ea2c5a..56a92deffc 100644 --- a/lualib/rspamadm/rescore.lua +++ b/lualib/rspamadm/rescore.lua @@ -468,10 +468,11 @@ return function (args, cfg) -- Display hit frequencies if opts['z'] then - local file_stats, all_symbols_stats = rescore_utility.generate_statistics_from_logs(logs, threshold) + local _, all_symbols_stats = rescore_utility.generate_statistics_from_logs(logs, threshold) local t = {} for _, symbol_stats in pairs(all_symbols_stats) do table.insert(t, symbol_stats) end - function compare_symbols (a, b) + + local function compare_symbols(a, b) if (a.spam_overall ~= b.spam_overall) then return b.spam_overall < a.spam_overall end @@ -481,6 +482,7 @@ return function (args, cfg) return b.ham_hits < a.ham_hits end table.sort(t, compare_symbols) + logger.message(string.format("%-40s %6s %6s %6s %6s %6s %6s %6s", "NAME", "HITS", "HAM", "HAM%", "SPAM", "SPAM%", "S/O", "OVER%")) for _, symbol_stats in pairs(t) do