diff options
| author | 2022-12-12 08:25:39 +0000 | |
|---|---|---|
| committer | 2022-12-12 08:25:39 +0000 | |
| commit | e7c635dd0226723413a314c11c38b8dbf074ce5a (patch) | |
| tree | c1b04f8decb9c00b662d264a9db9ce1389d0cd18 /src/modules/m_dnsbl.cpp | |
| parent | Fix compatibility with the v3 deaf config. (diff) | |
Fix the docs of markident and markhost being reversed in m_dnsbl.
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 e7bb029b4..5365bd43a 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -76,10 +76,10 @@ public: // The domain name of this DNSBL. std::string domain; - // If action is set to mark then a new username (ident) to set on users who's IP address is in this DNSBL. + // If action is set to mark then a new hostname to set on users who's IP address is in this DNSBL. std::string markhost; - // If action is set to mark then a new hostname to set on users who's IP address is in this DNSBL. + // If action is set to mark then a new username (ident) to set on users who's IP address is in this DNSBL. std::string markident; // The human readable name of this DNSBL. |
