From: Vsevolod Stakhov Date: Wed, 4 Dec 2013 17:19:05 +0000 (+0000) Subject: Set read_only to FALSE by default. X-Git-Tag: 0.6.2~17 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b966b20a152306f72efc113b079d5b56804c657d;p=rspamd.git Set read_only to FALSE by default. --- 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; }