summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorRobby- <robby@chat.be>2013-11-11 05:37:34 +0100
committerRobby- <robby@chat.be>2014-06-23 14:45:01 +0200
commitd9d4a2cdc10a6429529baf04de550ec7d20d3c13 (patch)
tree0baf2ffb84c48ee4bdd49e9bdf75ac367d2e08b4 /src/modules
parent4a77f472fd5bad95f1e4e26835317533d988ea15 (diff)
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 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();
}