summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-06-01 20:53:45 +0200
committerattilamolnar <attilamolnar@hush.com>2013-06-01 20:53:45 +0200
commitc8ef121681b73748bb78a2fdefca5d5973491f25 (patch)
tree7821ee71936187223de072f57584a97ef561b665 /src
parent0e09600a431d0e0f2cde6457e088d84caf6d6f5d (diff)
cmd_who Hide +i users when listing users on a server and hidewhois is off
Fixes #547 reported by @RawrDragon
Diffstat (limited to 'src')
-rw-r--r--src/commands/cmd_who.cpp2
1 files changed, 1 insertions, 1 deletions
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<std::string>& parameters, User *
for (const char* check = matchtext; *check; check++)
{
- if (*check == '*' || *check == '?')
+ if (*check == '*' || *check == '?' || *check == '.')
{
usingwildcards = true;
break;