aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-12-26 20:04:17 +0000
committerGravatar Sadie Powell2022-12-26 20:04:17 +0000
commitbeb9c2475c071e882957b41bf57afc2db1a6f0fe (patch)
treedb223550fc22183f48c45af4cb1fa39d21d0388e
parentFix overwriting marks from earlier DNSBLs. (diff)
Fix a C++11-ism in the dnsbl module.
-rw-r--r--src/modules/m_dnsbl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp
index 506003c70..c90dab39e 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -57,7 +57,7 @@ class DNSBLConfEntry : public refcountbase
}
};
-typedef SimpleExtItem<std::vector<std::string>> MarkExtItem;
+typedef SimpleExtItem<std::vector<std::string> > MarkExtItem;
/** Resolver for CGI:IRC hostnames encoded in ident/real name
*/