diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-06-01 20:53:45 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-01 20:53:45 +0200 |
commit | c8ef121681b73748bb78a2fdefca5d5973491f25 (patch) | |
tree | 7821ee71936187223de072f57584a97ef561b665 | |
parent | 0e09600a431d0e0f2cde6457e088d84caf6d6f5d (diff) |
cmd_who Hide +i users when listing users on a server and hidewhois is off
Fixes #547 reported by @RawrDragon
-rw-r--r-- | src/commands/cmd_who.cpp | 2 |
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; |