summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2013-12-04 17:19:05 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2013-12-04 17:19:05 +0000
commitb966b20a152306f72efc113b079d5b56804c657d (patch)
tree5f80972c855c2d20cdb9acd88e7c2978f29bde56 /src
parent05599df1c3878053cf008df8b582d00accd11fc7 (diff)
downloadrspamd-b966b20a152306f72efc113b079d5b56804c657d.tar.gz
rspamd-b966b20a152306f72efc113b079d5b56804c657d.zip
Set read_only to FALSE by default.
Diffstat (limited to 'src')
-rw-r--r--src/plugins/fuzzy_check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c
index 9d56806d6..28ccf7c37 100644
--- a/src/plugins/fuzzy_check.c
+++ b/src/plugins/fuzzy_check.c
@@ -313,7 +313,7 @@ fuzzy_rule_new (const char *default_symbol, memory_pool_t *pool)
rule->mappings = g_hash_table_new (g_direct_hash, g_direct_equal);
rule->symbol = default_symbol;
memory_pool_add_destructor (pool, (pool_destruct_func)g_hash_table_unref, rule->mappings);
- rule->read_only = TRUE;
+ rule->read_only = FALSE;
return rule;
}