]> source.dussan.org Git - rspamd.git/commitdiff
luacheck fixes
authorJason Stephenson <j.stephenson@live.co.uk>
Fri, 22 Jul 2022 13:29:08 +0000 (14:29 +0100)
committerJason Stephenson <j.stephenson@live.co.uk>
Fri, 22 Jul 2022 13:29:08 +0000 (14:29 +0100)
lualib/rspamadm/mime.lua

index 19409eb884bde4c473b63a04b032ef29afe4dc5a..44140829bffb1d88f0db7085026d68a3e115b68f 100644 (file)
@@ -890,7 +890,7 @@ end
   -- ../home/very_simple.eml
 --All the above end up as very_simple
 local function filename_only(filepath)
-  filename = filepath:match(".*%/([^%.]+)")
+  local filename = filepath:match(".*%/([^%.]+)")
   if not filename then
     filename = filepath:match("([^%.]+)")
   end
@@ -899,8 +899,7 @@ end
 
 --Write the dump content to file or standard out
 local function write_dump_content(dump_content, fname, extension, outdir)
-  
-  wrote_filepath = nil
+  local wrote_filepath = nil
   if outdir then
     if outdir:sub(-1) ~= "/" then
       outdir = outdir .. "/"
@@ -920,7 +919,7 @@ local function write_dump_content(dump_content, fname, extension, outdir)
   else
       io.write(dump_content)
   end
-
+luacheck
   return wrote_filepath
 end
 
@@ -928,8 +927,7 @@ end
 local function get_dump_content(task, opts, fname)
   if opts.ucl or opts.json or opts.messagepack then
     local ucl_object = lua_mime.message_to_ucl(task)
-    
-    --Split out the content field into separate raws and update the ucl
+    -- Split out the content field into separate raws and update the ucl
     if opts.split then
       for i, part in ipairs(ucl_object.parts) do
         if part.content then
@@ -955,7 +953,6 @@ local function dump_handler(opts)
 
   for _,fname in ipairs(opts.file) do
     local task = load_task(opts, fname)
-    
     local data, extension = get_dump_content(task, opts, fname)
     write_dump_content(data, fname, extension, opts.outdir)