diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-10-10 13:18:19 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-10-10 13:18:19 +0100 |
commit | fa554083457bd6b2328f85e4b8c5d0453e49879e (patch) | |
tree | ec2424518e4841b90427f798d23cadb50496b6f9 /src/lua/lua_common.h | |
parent | 842d2c4164dad1d8539eb2ecf114f9220b23970d (diff) | |
download | rspamd-fa554083457bd6b2328f85e4b8c5d0453e49879e.tar.gz rspamd-fa554083457bd6b2328f85e4b8c5d0453e49879e.zip |
Fix call of expression functions.
Diffstat (limited to 'src/lua/lua_common.h')
-rw-r--r-- | src/lua/lua_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_common.h b/src/lua/lua_common.h index 526c20f6f..c6ba06160 100644 --- a/src/lua/lua_common.h +++ b/src/lua/lua_common.h @@ -147,7 +147,7 @@ gint luaopen_rsa (lua_State * L); gint lua_call_filter (const gchar *function, struct worker_task *task); gint lua_call_chain_filter (const gchar *function, struct worker_task *task, gint *marks, guint number); double lua_consolidation_func (struct worker_task *task, const gchar *metric_name, const gchar *function_name); -gboolean lua_call_expression_func (const gchar *module, const gchar *symbol, struct worker_task *task, GList *args, gboolean *res); +gboolean lua_call_expression_func (gpointer lua_data, struct worker_task *task, GList *args, gboolean *res); void lua_call_post_filters (struct worker_task *task); void lua_call_pre_filters (struct worker_task *task); void add_luabuf (const gchar *line); |