diff options
author | Peter Powell <petpow@saberuk.com> | 2017-07-12 15:04:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 15:04:01 +0100 |
commit | c6a508a3da977041909f18f77d6e8fea942512cf (patch) | |
tree | 978957660e7e9d74bb4459f6f5a40a0b0a333ef1 /src/modules/m_dnsbl.cpp | |
parent | f471083cd0519d47c7c7a09029813ede41994f7b (diff) | |
parent | d9d4a2cdc10a6429529baf04de550ec7d20d3c13 (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.cpp | 2 |
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(); } |