diff options
| author | 2013-08-09 18:20:12 +0200 | |
|---|---|---|
| committer | 2013-08-09 18:20:12 +0200 | |
| commit | b4542af6b4c69dff7d2c28d9c435304b7d78dc38 (patch) | |
| tree | 8a42ca6672184895ab63cf5488fe6c474353e027 /src/modules/m_dnsbl.cpp | |
| parent | Move host cycle logic into m_hostcycle (diff) | |
Accept std::string as parameter in User::ChangeHost(), ChangeIdent() and ChangeName()
Pass the string itself to IsIdent() instead of string.c_str()
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 5519380dc..b457648e6 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -118,13 +118,13 @@ class DNSBLResolver : public DNS::Request if (!ConfEntry->ident.empty()) { them->WriteServ("304 " + them->nick + " :Your ident has been set to " + ConfEntry->ident + " because you matched " + reason); - them->ChangeIdent(ConfEntry->ident.c_str()); + them->ChangeIdent(ConfEntry->ident); } if (!ConfEntry->host.empty()) { them->WriteServ("304 " + them->nick + " :Your host has been set to " + ConfEntry->host + " because you matched " + reason); - them->ChangeDisplayedHost(ConfEntry->host.c_str()); + them->ChangeDisplayedHost(ConfEntry->host); } nameExt.set(them, ConfEntry->name); |
