diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-08-28 19:45:21 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-08-28 19:45:21 +0000 |
commit | 0a3159121e15decec9bcb82c836158a817bba894 (patch) | |
tree | 778ed6bfd9a92c5ff2a12e830c8ec450c2057ac4 /src/commands/cmd_who.cpp | |
parent | ed1dd51ef7fbf396ecfa77350b67ed8a4c0be29c (diff) |
Rename lowermap to rfc_case_insensitive_map, add case_sensitive_map.. adjust files to not pass lowermap directly.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10337 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_who.cpp')
-rw-r--r-- | src/commands/cmd_who.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/commands/cmd_who.cpp b/src/commands/cmd_who.cpp index 1ce4e4c28..403ec5f64 100644 --- a/src/commands/cmd_who.cpp +++ b/src/commands/cmd_who.cpp @@ -71,11 +71,11 @@ bool CommandWho::whomatch(User* user, const char* matchtext) if (opt_metadata) match = user->GetExt(matchtext, dummy); else if (opt_realname) - match = InspIRCd::Match(user->fullname, matchtext, lowermap); + match = InspIRCd::Match(user->fullname, matchtext); else if (opt_showrealhost) - match = InspIRCd::Match(user->host, matchtext, lowermap); + match = InspIRCd::Match(user->host, matchtext); else if (opt_ident) - match = InspIRCd::Match(user->ident, matchtext, lowermap); + match = InspIRCd::Match(user->ident, matchtext); else if (opt_port) { irc::portparser portrange(matchtext, false); @@ -88,7 +88,7 @@ bool CommandWho::whomatch(User* user, const char* matchtext) } } else if (opt_away) - match = InspIRCd::Match(user->awaymsg, matchtext, lowermap); + match = InspIRCd::Match(user->awaymsg, matchtext); else if (opt_time) { long seconds = ServerInstance->Duration(matchtext); @@ -106,13 +106,13 @@ bool CommandWho::whomatch(User* user, const char* matchtext) * -- w00t */ if (!match) - match = InspIRCd::Match(user->dhost, matchtext, lowermap); + match = InspIRCd::Match(user->dhost, matchtext); if (!match) - match = InspIRCd::Match(user->nick, matchtext, lowermap); + match = InspIRCd::Match(user->nick, matchtext); if (!match) - match = InspIRCd::Match(user->server, matchtext, lowermap); + match = InspIRCd::Match(user->server, matchtext); return match; } |