summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-07-12 15:04:01 +0100
committerGitHub <noreply@github.com>2017-07-12 15:04:01 +0100
commitc6a508a3da977041909f18f77d6e8fea942512cf (patch)
tree978957660e7e9d74bb4459f6f5a40a0b0a333ef1 /src/modules
parentf471083cd0519d47c7c7a09029813ede41994f7b (diff)
parentd9d4a2cdc10a6429529baf04de550ec7d20d3c13 (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')
-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();
}