]> source.dussan.org Git - rspamd.git/commitdiff
Remove unused attribute from rspamd_lua_init
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 14 Dec 2015 18:34:44 +0000 (18:34 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 14 Dec 2015 18:34:44 +0000 (18:34 +0000)
src/libserver/cfg_utils.c
src/lua/lua_common.c
src/lua/lua_common.h
test/rspamd_lua_test.c

index 11be0287991ccdd71b54bbe35009ceb9746c08a5..b72dfa70d60098401eef5370fe0026590c729d84 100644 (file)
@@ -195,7 +195,7 @@ rspamd_config_new (void)
        cfg->min_word_len = DEFAULT_MIN_WORD;
        cfg->max_word_len = DEFAULT_MAX_WORD;
 
-       cfg->lua_state = rspamd_lua_init (cfg);
+       cfg->lua_state = rspamd_lua_init ();
        cfg->cache = rspamd_symbols_cache_new (cfg);
        cfg->ups_ctx = rspamd_upstreams_library_init ();
        cfg->re_cache = rspamd_re_cache_new ();
index 63e694462927cbca27363cf5d7c74f5cc8f14cef..0cbec0408a13661a5521393c177710845558e874 100644 (file)
@@ -210,7 +210,7 @@ rspamd_lua_set_path (lua_State *L, struct rspamd_config *cfg)
 }
 
 lua_State *
-rspamd_lua_init (struct rspamd_config *cfg)
+rspamd_lua_init ()
 {
        lua_State *L;
 
@@ -262,7 +262,7 @@ rspamd_init_lua_locked (struct rspamd_config *cfg)
        struct lua_locked_state *new;
 
        new = g_slice_alloc (sizeof (struct lua_locked_state));
-       new->L = rspamd_lua_init (cfg);
+       new->L = rspamd_lua_init ();
        new->m = rspamd_mutex_new ();
 
        return new;
index 609838c134069f82e4cf84cbe2282434f34ec70d..f51aee73189e07aee3f3ec260e0c4cfe459d5ec8 100644 (file)
@@ -126,7 +126,7 @@ gpointer rspamd_lua_check_class (lua_State *L, gint index, const gchar *name);
 /**
  * Initialize lua and bindings
  */
-lua_State * rspamd_lua_init (struct rspamd_config *cfg);
+lua_State *rspamd_lua_init (void);
 
 /**
  * Load and initialize lua plugins
index 8b1b0938342fbe6ad1664a514d65127fa7198e0e..8297657c422a84345058ad5b5b64fcbd52cf1c36 100644 (file)
@@ -63,7 +63,7 @@ traceback (lua_State *L)
 void
 rspamd_lua_test_func (void)
 {
-       lua_State *L = rspamd_lua_init (NULL);
+       lua_State *L = rspamd_lua_init ();
        gchar *rp, rp_buf[PATH_MAX], path_buf[PATH_MAX], *tmp, *dir, *pattern;
        const gchar *old_path;
        glob_t globbuf;