summaryrefslogtreecommitdiff
path: root/mail/spamprobe/patches
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2012-12-20 21:48:15 +0000
committerjoerg <joerg@pkgsrc.org>2012-12-20 21:48:15 +0000
commit871c21b1c50ee99a6d929b87485d7e85a2621533 (patch)
tree20fd0f3306122370e5840ade6291cdf2f8df7184 /mail/spamprobe/patches
parent073a50436897ca564fb263106186244821e93fa6 (diff)
downloadpkgsrc-871c21b1c50ee99a6d929b87485d7e85a2621533.tar.gz
Fix template look up.
Diffstat (limited to 'mail/spamprobe/patches')
-rw-r--r--mail/spamprobe/patches/patch-src_includes_Ref.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/mail/spamprobe/patches/patch-src_includes_Ref.h b/mail/spamprobe/patches/patch-src_includes_Ref.h
new file mode 100644
index 00000000000..711d144d00e
--- /dev/null
+++ b/mail/spamprobe/patches/patch-src_includes_Ref.h
@@ -0,0 +1,22 @@
+$NetBSD: patch-src_includes_Ref.h,v 1.1 2012/12/20 21:48:15 joerg Exp $
+
+--- src/includes/Ref.h.orig 2012-12-20 17:44:52.000000000 +0000
++++ src/includes/Ref.h
+@@ -189,7 +189,7 @@ public:
+
+ CRef<T> &operator=(const CRef<T> &other)
+ {
+- assign(other);
++ this->assign(other);
+ return *this;
+ }
+
+@@ -245,7 +245,7 @@ public:
+
+ Ref<T> &operator=(const Ref<T> &other)
+ {
+- assign(other);
++ this->assign(other);
+ return *this;
+ }
+