diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-18 10:11:09 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-18 10:11:09 +0100 |
commit | c69f378fa39821caadd601c69909c829ffe31ea4 (patch) | |
tree | 4b0ea3a234df0742fbcec3a713f590777a389e13 /src/lua/lua_common.c | |
parent | 74889ceafbb4756dc331577db7864279f23fa64f (diff) | |
download | rspamd-c69f378fa39821caadd601c69909c829ffe31ea4.tar.gz rspamd-c69f378fa39821caadd601c69909c829ffe31ea4.zip |
[Feature] Lua_mimepart: Add function filter_words
Diffstat (limited to 'src/lua/lua_common.c')
-rw-r--r-- | src/lua/lua_common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lua/lua_common.c b/src/lua/lua_common.c index 7e7a2854f..e268d6564 100644 --- a/src/lua/lua_common.c +++ b/src/lua/lua_common.c @@ -2173,6 +2173,8 @@ rspamd_lua_push_words (lua_State *L, GArray *words, /* Push to the resulting vector */ lua_rawseti (L, -2, cnt ++); break; + default: + break; } } |