1
0
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:
cyberbotx
2009-02-10 23:51:37 +00:00
parent e2f6064f10
commit 8c2430d02d
+1 -1
View File
@@ -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());
}