]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix tests
authorAndrew Lewis <nerf@judo.za.org>
Mon, 11 Sep 2017 14:05:51 +0000 (16:05 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Mon, 11 Sep 2017 14:05:51 +0000 (16:05 +0200)
rules/html.lua
src/plugins/lua/antivirus.lua
test/functional/lua/url_tags.lua

index 7c88928ebf928192e4bd5041780d849f1836b5c1..81555839b78886d01a44ecebc13f19eb0a710e97 100644 (file)
@@ -173,13 +173,12 @@ rspamd_config.R_WHITE_ON_WHITE = {
     local tp = task:get_text_parts() -- get text parts in a message
     local ret = false
     local diff = 0.0
-    local normal_len = 0
     local transp_rate = 0
     local arg
 
     for _,p in ipairs(tp) do -- iterate over text parts array using `ipairs`
       if p:is_html() and p:get_html() then -- if the current part is html part
-        normal_len = p:get_length()
+        local normal_len = p:get_length()
         local transp_len = 0
         local hc = p:get_html() -- we get HTML context
 
index 4802b239e1e812ee39f0d34335c24bb741a3cb19..652ab03f69dd4846c719429aea3f2fba4fb35e44 100644 (file)
@@ -739,7 +739,6 @@ local av_types = {
 }
 
 local function add_antivirus_rule(sym, opts)
-  local rule = {}
   if not opts['type'] then
     return nil
   end
@@ -752,7 +751,7 @@ local function add_antivirus_rule(sym, opts)
       opts['type'])
   end
 
-  rule = cfg.configure(opts)
+  local rule = cfg.configure(opts)
 
   if not rule then
     rspamd_logger.errx(rspamd_config, 'cannot configure %s for %s',
index 6c2e07a7f6f143d5a7009da4adffb67111bea697..9dc38ac72d2540f1e91490715fca785c12eeecdb 100644 (file)
@@ -1,3 +1,4 @@
+
 local rspamd_logger = require 'rspamd_logger'
 
 rspamd_config:register_symbol({