diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-04-20 16:32:23 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-04-20 16:32:23 +0400 |
commit | 2d8eebcf7a0951d3d1189ddface7678fea76dd4c (patch) | |
tree | 7a1748e4d3633c3b8def3de8f2a08fb370c7e61d /src/cfg_file.h | |
parent | d4b35de4315753629ac5b107968e6194eac85d24 (diff) | |
download | rspamd-2d8eebcf7a0951d3d1189ddface7678fea76dd4c.tar.gz rspamd-2d8eebcf7a0951d3d1189ddface7678fea76dd4c.zip |
* Bugfixes:
- handle '\' characters in lua strings correctly
- fix lua initialization
- avoid of using global lua state (global L)
- fix listen sockets hash to allow multiply workers of same type but on different listen sockets
- fix modules options inserting to allow multiply options of the same name
- fix parsing of lua options
- fix lua rules
Diffstat (limited to 'src/cfg_file.h')
-rw-r--r-- | src/cfg_file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cfg_file.h b/src/cfg_file.h index fb220f486..baf65c377 100644 --- a/src/cfg_file.h +++ b/src/cfg_file.h @@ -161,7 +161,7 @@ struct statfile_binlog_params { uint16_t master_port; }; -typedef double (*statfile_normalize_func)(double score, void *params); +typedef double (*statfile_normalize_func)(struct config_file *cfg, double score, void *params); /** * Statfile config definition |