aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_dnsbl.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-07-12 12:24:07 +0100
committerGravatar Sadie Powell2023-07-12 12:25:40 +0100
commita247b41516db5c0bf625f98a7198054edb34bcc2 (patch)
tree30811f213623d5fa12c18ff57c54eae1d1548efa /src/modules/m_dnsbl.cpp
parentMerge branch 'insp3' into master. (diff)
Fix sending the wrong message when a user requests stats.
Closes #2051.
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
-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 4c828e6ac..57ab49442 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -658,7 +658,7 @@ public:
stats.AddGenericRow("Total DNSBL hits: " + ConvToStr(total_hits));
stats.AddGenericRow("Total DNSBL misses: " + ConvToStr(total_misses));
stats.AddGenericRow("Total DNSBL errors: " + ConvToStr(total_errors));
- return MOD_RES_PASSTHRU;
+ return MOD_RES_DENY;
}
};