From c8ef121681b73748bb78a2fdefca5d5973491f25 Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Sat, 1 Jun 2013 20:53:45 +0200 Subject: [PATCH] cmd_who Hide +i users when listing users on a server and hidewhois is off Fixes #547 reported by @RawrDragon --- src/commands/cmd_who.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/cmd_who.cpp b/src/commands/cmd_who.cpp index c8cb67694..f8926b9f7 100644 --- a/src/commands/cmd_who.cpp +++ b/src/commands/cmd_who.cpp @@ -264,7 +264,7 @@ CmdResult CommandWho::Handle (const std::vector& parameters, User * for (const char* check = matchtext; *check; check++) { - if (*check == '*' || *check == '?') + if (*check == '*' || *check == '?' || *check == '.') { usingwildcards = true; break; -- 2.39.2