diff options
| author | 2018-08-14 19:18:15 +0100 | |
|---|---|---|
| committer | 2018-08-14 19:31:26 +0100 | |
| commit | a69f543be3bb6df77bfc19eaadc313d405ec2d45 (patch) | |
| tree | 3a8620f14ea20715ceec71df828a1a76428314b9 /src/modules/m_dnsbl.cpp | |
| parent | Convert CLONES to use its own numeric and batch the replies. (diff) | |
Fix a bunch more conflicting/unnamed numerics.
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
| -rw-r--r-- | src/modules/m_dnsbl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp index 606feed10..89fecf696 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -128,13 +128,13 @@ class DNSBLResolver : public DNS::Request { if (!ConfEntry->ident.empty()) { - them->WriteNumeric(304, "Your ident has been set to " + ConfEntry->ident + " because you matched " + reason); + them->WriteNotice("Your ident has been set to " + ConfEntry->ident + " because you matched " + reason); them->ChangeIdent(ConfEntry->ident); } if (!ConfEntry->host.empty()) { - them->WriteNumeric(304, "Your host has been set to " + ConfEntry->host + " because you matched " + reason); + them->WriteNotice("Your host has been set to " + ConfEntry->host + " because you matched " + reason); them->ChangeDisplayedHost(ConfEntry->host); } |
