]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix hash invocation
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 29 Sep 2018 12:37:28 +0000 (13:37 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Sat, 29 Sep 2018 12:37:28 +0000 (13:37 +0100)
lualib/lua_meta.lua

index 936adb14186e6be72a81db8506994bb49ee6362c..deca2a58ccd3b4f53df719ccb69d1205e764c16d 100644 (file)
@@ -424,15 +424,15 @@ end
 local function calculate_digest()
   local cr = require "rspamd_cryptobox_hash"
 
-  cr.create()
+  local h = cr.create()
   for _,mt in ipairs(metafunctions) do
     for i=1,mt.ninputs do
       local name = mt.names[i]
-      cr:update(name)
+      h:update(name)
     end
   end
 
-  exports.digest = cr:hex()
+  exports.digest = h:hex()
 end
 
 local function rspamd_gen_metatokens(task, names)