aboutsummaryrefslogtreecommitdiffstats
path: root/src/libserver/re_cache.h
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-12-06 13:55:59 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-12-06 13:55:59 +0000
commite7cdc37c932d82db4fa026e1754ea2cd651a0620 (patch)
tree050c7fad5293822e5694d5278ef2667fa771b34a /src/libserver/re_cache.h
parent958cbf047b81c507d3d73deddaf1ee48a36e6415 (diff)
downloadrspamd-e7cdc37c932d82db4fa026e1754ea2cd651a0620.tar.gz
rspamd-e7cdc37c932d82db4fa026e1754ea2cd651a0620.zip
Fix re cache replacement method
Diffstat (limited to 'src/libserver/re_cache.h')
-rw-r--r--src/libserver/re_cache.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libserver/re_cache.h b/src/libserver/re_cache.h
index 6f2c0f312..0ced10bd6 100644
--- a/src/libserver/re_cache.h
+++ b/src/libserver/re_cache.h
@@ -59,16 +59,10 @@ void rspamd_re_cache_add (struct rspamd_re_cache *cache, rspamd_regexp_t *re,
* Replace regexp in the cache with another regexp
* @param cache cache object
* @param what re to replace
- * @param type type of object
- * @param type_data associated data with the type (e.g. header name)
- * @param datalen associated data length
* @param with regexp object to replace the origin
*/
void rspamd_re_cache_replace (struct rspamd_re_cache *cache,
rspamd_regexp_t *what,
- enum rspamd_re_type type,
- gpointer type_data,
- gsize datalen,
rspamd_regexp_t *with);
/**