summarylogtreecommitdiffstats
path: root/spamprobe-lrucache.patch
diff options
context:
space:
mode:
Diffstat (limited to 'spamprobe-lrucache.patch')
-rw-r--r--spamprobe-lrucache.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/spamprobe-lrucache.patch b/spamprobe-lrucache.patch
new file mode 100644
index 000000000000..2b489bd9d609
--- /dev/null
+++ b/spamprobe-lrucache.patch
@@ -0,0 +1,11 @@
+--- src/includes/LRUCache.h.orig 2018-08-14 08:00:27 UTC
++++ src/includes/LRUCache.h
+@@ -60,7 +60,7 @@ template<class KeyType, class ValueType> class LRUCach
+ {
+ public:
+ bool operator()(const NodeType *a,
+- const NodeType *b)
++ const NodeType *b) const
+ {
+ return a->key < b->key;
+ }