diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-09 11:50:59 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-09 11:50:59 +0100 |
commit | 51495d34e14ae26925c9c97f8137f474e3b61890 (patch) | |
tree | 48b791ad9b306d06cc572f6bee4c4ac375bbcce4 /src/lua/lua_common.c | |
parent | 4478caa98eb946b58a1d1b4e4e1a7ef8b984baac (diff) | |
download | rspamd-51495d34e14ae26925c9c97f8137f474e3b61890.tar.gz rspamd-51495d34e14ae26925c9c97f8137f474e3b61890.zip |
Rework lua_regexp lifetime.
Diffstat (limited to 'src/lua/lua_common.c')
-rw-r--r-- | src/lua/lua_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_common.c b/src/lua/lua_common.c index 0364dff66..1077fd00e 100644 --- a/src/lua/lua_common.c +++ b/src/lua/lua_common.c @@ -221,7 +221,7 @@ rspamd_lua_init (struct rspamd_config *cfg) luaopen_url (L); luaopen_classifier (L); luaopen_statfile (L); - luaopen_glib_regexp (L); + luaopen_regexp (L); luaopen_cdb (L); luaopen_xmlrpc (L); luaopen_http (L); |