diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-05 21:29:40 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-08-05 21:29:40 +0400 |
commit | 5d0e4d334fef7f0fe683040d32e2a53b503315f2 (patch) | |
tree | d2f00bbb940564a4e77a287f84c7876e8fd9c009 /src/filter.c | |
parent | 80b5b55a53622875d4973ea1d440dc7fa916f20b (diff) | |
download | rspamd-5d0e4d334fef7f0fe683040d32e2a53b503315f2.tar.gz rspamd-5d0e4d334fef7f0fe683040d32e2a53b503315f2.zip |
* Fixes to winnow learning
Diffstat (limited to 'src/filter.c')
-rw-r--r-- | src/filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filter.c b/src/filter.c index 9e2da0c57..90566ded9 100644 --- a/src/filter.c +++ b/src/filter.c @@ -438,7 +438,7 @@ process_autolearn (struct statfile *st, struct worker_task *task, GTree * tokens return; } - classifier->learn_func (ctx, task->worker->srv->statfile_pool, statfile, tokens, TRUE, NULL, 1.); + classifier->learn_func (ctx, task->worker->srv->statfile_pool, st->symbol, tokens, TRUE, NULL, 1., NULL); maybe_write_binlog (ctx->cfg, st, statfile, tokens); } } |