From 0276e5138a8f886fe709ffed534aaf5ff826b5be Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 18 May 2008 17:51:36 +0000 Subject: Remove .c_str()'s in match() calls that are no longer needed as match() natively takes std::strings git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9737 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_tline.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/modules/m_tline.cpp') diff --git a/src/modules/m_tline.cpp b/src/modules/m_tline.cpp index 7dc960c5a..755b3a58d 100644 --- a/src/modules/m_tline.cpp +++ b/src/modules/m_tline.cpp @@ -37,16 +37,15 @@ class CommandTline : public Command for (user_hash::const_iterator u = ServerInstance->Users->clientlist->begin(); u != ServerInstance->Users->clientlist->end(); u++) { n_counted++; - if (match(u->second->GetFullRealHost(),parameters[0].c_str())) + if (match(u->second->GetFullRealHost(),parameters[0])) { n_matched++; n_match_host++; } else { - char host[MAXBUF]; - snprintf(host, MAXBUF, "%s@%s", u->second->ident, u->second->GetIPString()); - if (match(host, parameters[0].c_str(), true)) + std::string host = std::string(u->second->ident) + "@" + u->second->GetIPString(); + if (match(host, parameters[0], true)) { n_matched++; n_match_ip++; -- cgit v1.2.3