diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-09-11 14:00:43 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-09-11 14:00:43 +0100 |
commit | 941bde42665f81e65f63fa8a35e9774571cea32a (patch) | |
tree | dc8680a9a5df291ede32b8862d971f06fcd81621 /lualib | |
parent | 952850a4741c0e919879da7e16715d59c40eacca (diff) | |
download | rspamd-941bde42665f81e65f63fa8a35e9774571cea32a.tar.gz rspamd-941bde42665f81e65f63fa8a35e9774571cea32a.zip |
[Minor] Add lz4 support
Diffstat (limited to 'lualib')
-rw-r--r-- | lualib/lua_magic/patterns.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lualib/lua_magic/patterns.lua b/lualib/lua_magic/patterns.lua index f0759de5d..1b0f89577 100644 --- a/lualib/lua_magic/patterns.lua +++ b/lualib/lua_magic/patterns.lua @@ -190,17 +190,17 @@ local patterns = { lz4 = { matches = { { - hex = "184d2204", + hex = "04224d18", relative_position = 0, weight = 60, }, { - hex = "184c2103", + hex = "03214c18", relative_position = 0, weight = 60, }, { - hex = "184c2102", + hex = "02214c18", relative_position = 0, weight = 60, }, |