aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_dnsbl.cpp
diff options
context:
space:
mode:
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 43c5fda8c..4a397557a 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -541,14 +541,14 @@ public:
{
if (!ih->user.empty())
{
- user->WriteNotice("Your username has been set to " + ih->user + " because you matched " + ih->reason);
user->ChangeDisplayedUser(ih->user);
+ user->WriteNotice("Your username has been set to " + ih->user + ": " + ih->reason);
}
if (!ih->host.empty())
{
- user->WriteNotice("Your hostname has been set to " + ih->host + " because you matched " + ih->reason);
user->ChangeDisplayedHost(ih->host);
+ user->WriteNotice("Your hostname has been set to " + ih->host + ": " + ih->reason);
}
data.maskext.Unset(user);