aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_dnsbl.cpp
diff options
context:
space:
mode:
authorGravatar Peter Powell2017-07-12 15:04:01 +0100
committerGravatar GitHub2017-07-12 15:04:01 +0100
commitc6a508a3da977041909f18f77d6e8fea942512cf (patch)
tree978957660e7e9d74bb4459f6f5a40a0b0a333ef1 /src/modules/m_dnsbl.cpp
parentMerge pull request #1337 from SaberUK/master+merge (diff)
parentm_dnsbl: Correct the address in the Z-line snomask message. (diff)
Merge pull request #677 from Robby-/master-dnsblzline
[master] m_dnsbl: Correct the address in the Z-line snomask message.
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 7b0f06191..752a0d7a5 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -183,7 +183,7 @@ class DNSBLResolver : public DNS::Request
if (ServerInstance->XLines->AddLine(zl,NULL))
{
std::string timestr = InspIRCd::TimeString(zl->expiry);
- ServerInstance->SNO->WriteGlobalSno('x',"Z:line added due to DNSBL match on *@%s to expire on %s: %s",
+ ServerInstance->SNO->WriteGlobalSno('x',"Z:line added due to DNSBL match on %s to expire on %s: %s",
them->GetIPString().c_str(), timestr.c_str(), reason.c_str());
ServerInstance->XLines->ApplyLines();
}