aboutsummaryrefslogtreecommitdiffstats
path: root/modules/dnsbl.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-02 20:59:41 +0000
committerGravatar Sadie Powell2026-03-02 21:09:27 +0000
commit7110535309675a6579c57900ef75498bfb2e0ce6 (patch)
treed419a876ee5534e5aef23f14efde5161d92a0126 /modules/dnsbl.cpp
parentLoad the swhois module if a config contains the swhois_ext module. (diff)
Rename ServiceProvider::creator to service_creator and add GetSource.
Diffstat (limited to 'modules/dnsbl.cpp')
-rw-r--r--modules/dnsbl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dnsbl.cpp b/modules/dnsbl.cpp
index a5d1544de..6866a5cff 100644
--- a/modules/dnsbl.cpp
+++ b/modules/dnsbl.cpp
@@ -489,7 +489,7 @@ void SharedData::Lookup(LocalUser* user)
const std::string hostname = reversedip + "." + dnsbl->domain;
// Try to do the DNSBL lookup.
- auto* r = new DNSBLResolver(dns->creator, *this, hostname, user, dnsbl);
+ auto* r = new DNSBLResolver(dns->service_creator, *this, hostname, user, dnsbl);
try
{
dns->Process(r);