]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[FIX] Antivirus - virus names #2 2609/head
authorCarsten Rosenberg <c.rosenberg@heinlein-support.de>
Wed, 24 Oct 2018 20:25:10 +0000 (22:25 +0200)
committerCarsten Rosenberg <c.rosenberg@heinlein-support.de>
Wed, 24 Oct 2018 20:25:10 +0000 (22:25 +0200)
src/plugins/lua/antivirus.lua

index 1c2660b72c1622c9343dd1d16fff1e2d7241ec92..a00d2cd736689199ff72e00bb3376c61f9ae0dbf 100644 (file)
@@ -313,7 +313,7 @@ local function check_av_cache(task, digest, rule, fn)
       -- Cached
       if data ~= 'OK' then
         lua_util.debugm(N, task, 'got cached result for %s: %s', key, data)
-        data = rspamd_str_split(data, '\x7c')
+        data = rspamd_str_split(data, '\v')
         yield_result(task, rule, data)
       else
         lua_util.debugm(N, task, 'got cached result for %s: %s', key, data)
@@ -359,7 +359,7 @@ local function save_av_cache(task, digest, rule, to_save)
   end
 
   if type(to_save) == 'table' then
-    to_save = table.concat(to_save, '\x30')
+    to_save = table.concat(to_save, '\v')
   end
 
   if redis_params then