diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-04-27 13:53:00 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-04-27 13:53:00 +0400 |
commit | c1723b27e05334a43d1443a125023ba556f54117 (patch) | |
tree | 4af876acbf421fdc706aed9f878e26fc1b15827a /src/plugins/regexp.c | |
parent | df6562305f81d4d737a0aedf9f1560375daf8d39 (diff) | |
download | rspamd-c1723b27e05334a43d1443a125023ba556f54117.tar.gz rspamd-c1723b27e05334a43d1443a125023ba556f54117.zip |
* Fix error in regexp module configuration
Diffstat (limited to 'src/plugins/regexp.c')
-rw-r--r-- | src/plugins/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/regexp.c b/src/plugins/regexp.c index e1f751ef9..622c06c83 100644 --- a/src/plugins/regexp.c +++ b/src/plugins/regexp.c @@ -165,7 +165,7 @@ regexp_module_config (struct config_file *cfg) g_free (value); } else { - regexp_module_ctx->metric = DEFAULT_STATFILE_PREFIX; + regexp_module_ctx->statfile_prefix = DEFAULT_STATFILE_PREFIX; } cur_module_opt = g_hash_table_lookup (cfg->modules_opts, "regexp"); |