diff options
| author | 2010-04-02 10:39:15 -0500 | |
|---|---|---|
| committer | 2010-04-02 10:39:15 -0500 | |
| commit | 3cf993500544c2157992650da2487bfa89be405d (patch) | |
| tree | 6c90eba384e2361114752a28a166ef4d1fe6d80b /src/commands/cmd_userhost.cpp | |
| parent | Split up API_VERSION number (diff) | |
Use FindNickOnly in a few commands to prevent enumerating users via UID walking
Diffstat (limited to 'src/commands/cmd_userhost.cpp')
| -rw-r--r-- | src/commands/cmd_userhost.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_userhost.cpp b/src/commands/cmd_userhost.cpp index 102bb3d84..126b49ee4 100644 --- a/src/commands/cmd_userhost.cpp +++ b/src/commands/cmd_userhost.cpp @@ -50,7 +50,7 @@ CmdResult CommandUserhost::Handle (const std::vector<std::string>& parameters, U for (unsigned int i = 0; i < parameters.size(); i++) { - User *u = ServerInstance->FindNick(parameters[i]); + User *u = ServerInstance->FindNickOnly(parameters[i]); if ((u) && (u->registered == REG_ALL)) { |
