diff options
author | Andrew Lewis <nerf@judo.za.org> | 2017-12-06 23:49:30 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2017-12-06 23:49:30 +0200 |
commit | 8feaf9efa43029f78af3f7c2ce35be4d778ee0fd (patch) | |
tree | 7af6640f88d233276632f315bcb03a9a645e4820 /src/plugins/fuzzy_check.c | |
parent | 902c55e5bec49c134e28ed468ac0fe46ab5dfc35 (diff) | |
download | rspamd-8feaf9efa43029f78af3f7c2ce35be4d778ee0fd.tar.gz rspamd-8feaf9efa43029f78af3f7c2ce35be4d778ee0fd.zip |
[Minor] Fix use of wrong type
Diffstat (limited to 'src/plugins/fuzzy_check.c')
-rw-r--r-- | src/plugins/fuzzy_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fuzzy_check.c b/src/plugins/fuzzy_check.c index c078940a8..a0706830d 100644 --- a/src/plugins/fuzzy_check.c +++ b/src/plugins/fuzzy_check.c @@ -88,7 +88,7 @@ struct fuzzy_rule { gboolean fuzzy_images; gboolean short_text_direct_hash; gint learn_condition_cb; - struct rspamd_map *skip_map; + GHashTable *skip_map; }; struct fuzzy_ctx { |