]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix work with file names
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 30 Apr 2021 16:51:45 +0000 (17:51 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Fri, 30 Apr 2021 16:51:45 +0000 (17:51 +0100)
lualib/rspamadm/statistics_dump.lua

index bbd4e241051f838476063c0caebb99520d39ecea..ab4e026c5219cefc9f71c96105e51d0d03a61ac9 100644 (file)
@@ -378,7 +378,7 @@ local function execute_batch(batch, conns, opts)
 end
 
 local function restore_handler(opts)
-  local files = opts.files or {'-'}
+  local files = opts.file or {'-'}
   local conns = {}
 
   for _,cls in ipairs(classifiers) do
@@ -395,8 +395,10 @@ local function restore_handler(opts)
   local batch = {}
 
   for _,f in ipairs(files) do
+    local fd
     if f ~= '-' then
-      io.input(f)
+      fd = io.open(f, 'r')
+      io.input(fd)
     end
 
     local cur_line = 1
@@ -418,6 +420,8 @@ local function restore_handler(opts)
         batch = {}
       end
     end
+
+    if fd then fd:close() end
   end
 
   if #batch > 0 then