]> source.dussan.org Git - rspamd.git/commitdiff
Set read_only to FALSE by default.
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 4 Dec 2013 17:19:05 +0000 (17:19 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Wed, 4 Dec 2013 17:19:05 +0000 (17:19 +0000)
src/plugins/fuzzy_check.c

index 9d56806d6520037312236efc55a6a1a49874d946..28ccf7c37845dca0a7cf9b4543968cd503e1217c 100644 (file)
@@ -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;
 }