mirror of
https://github.com/anope/anope.git
synced 2026-06-25 03:46:36 +02:00
Fixed compiler error in os_userlist.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1999 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
@@ -43,7 +43,7 @@ class CommandOSUserList : public Command
|
||||
|
||||
for (cu = c->users; cu; cu = cu->next)
|
||||
{
|
||||
if (modes && !(cu->user->mode & mode))
|
||||
if (modes && !(cu->user->mode & modes))
|
||||
continue;
|
||||
notice_lang(s_OperServ, u, OPER_USERLIST_RECORD, cu->user->nick, cu->user->GetIdent().c_str(), cu->user->GetDisplayedHost().c_str());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user