aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_dnsbl.cpp
diff options
context:
space:
mode:
authorGravatar Robby-2013-11-11 05:37:34 +0100
committerGravatar Robby-2014-06-23 14:45:01 +0200
commitd9d4a2cdc10a6429529baf04de550ec7d20d3c13 (patch)
tree0baf2ffb84c48ee4bdd49e9bdf75ac367d2e08b4 /src/modules/m_dnsbl.cpp
parentUse std::find() in ParseStack::ParseFile() (diff)
downloadinspircd++-d9d4a2cdc10a6429529baf04de550ec7d20d3c13.tar.gz
inspircd++-d9d4a2cdc10a6429529baf04de550ec7d20d3c13.tar.bz2
inspircd++-d9d4a2cdc10a6429529baf04de550ec7d20d3c13.zip
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 63dda547f..6fe54fa19 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -173,7 +173,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();
}