diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-14 18:28:33 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-12-14 18:28:33 +0000 |
commit | 45384ca0ba44f87a34eb1e1207f6f6b545f457a2 (patch) | |
tree | 5c85d4ecf5fdf77a59ad29f9e9e01d8a3df3f753 /src/libutil/hash.c | |
parent | 2638d55b61fcbc37693d6e00c98ce3f6c8e671f3 (diff) | |
download | rspamd-45384ca0ba44f87a34eb1e1207f6f6b545f457a2.tar.gz rspamd-45384ca0ba44f87a34eb1e1207f6f6b545f457a2.zip |
Fix fuzzy stats
Diffstat (limited to 'src/libutil/hash.c')
-rw-r--r-- | src/libutil/hash.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/libutil/hash.c b/src/libutil/hash.c index 51cc4207c..845e2fc3f 100644 --- a/src/libutil/hash.c +++ b/src/libutil/hash.c @@ -30,16 +30,6 @@ * LRU hashing */ -typedef struct rspamd_lru_element_s { - gpointer data; - gpointer key; - time_t store_time; - guint ttl; - rspamd_lru_hash_t *hash; - GList *link; - -} rspamd_lru_element_t; - struct rspamd_lru_hash_s { gint maxsize; gint maxage; |