diff options
| author | 2023-07-12 12:24:07 +0100 | |
|---|---|---|
| committer | 2023-07-12 12:25:40 +0100 | |
| commit | a247b41516db5c0bf625f98a7198054edb34bcc2 (patch) | |
| tree | 30811f213623d5fa12c18ff57c54eae1d1548efa /src/modules/m_dnsbl.cpp | |
| parent | Merge 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.cpp | 2 |
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; } }; |
