From b966b20a152306f72efc113b079d5b56804c657d Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 4 Dec 2013 17:19:05 +0000 Subject: [PATCH] Set read_only to FALSE by default. --- src/plugins/fuzzy_check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5