aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_dnsbl.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-12-26 00:40:53 +0000
committerGravatar Sadie Powell2021-12-26 00:40:53 +0000
commit9fafbf633b46876401ea6c557898e464a949c3ce (patch)
tree4fe624cb81dda54e9ea2ca42e4212828cf7ab4aa /src/modules/m_dnsbl.cpp
parentConvert the geoclass module to use generic stats instead of its own numeric. (diff)
Make all extensibles use kebab-case for names where possible.
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
-rw-r--r--src/modules/m_dnsbl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp
index ec8fafda6..6c9e56a2a 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -366,8 +366,8 @@ class ModuleDNSBL final
: Module(VF_VENDOR, "Allows the server administrator to check the IP address of connecting users against a DNSBL.")
, Stats::EventListener(this)
, DNS(this, "DNS")
- , nameExt(this, "dnsbl_match", ExtensionType::USER)
- , countExt(this, "dnsbl_pending", ExtensionType::USER)
+ , nameExt(this, "dnsbl-match", ExtensionType::USER)
+ , countExt(this, "dnsbl-pending", ExtensionType::USER)
{
}