summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 23:51:37 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-10 23:51:37 +0000
commit8c2430d02d89eeefda00a2b23d3e8bbe18693fe4 (patch)
tree43e48a435b2b4ac1d5380bfe0929d417cb69f1b8 /src
parente2f6064f10df88c129a155e403c33344f1eb295c (diff)
Fixed compiler error in os_userlist.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1999 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/core/os_userlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/os_userlist.c b/src/core/os_userlist.c
index a04b8f2e6..788954126 100644
--- a/src/core/os_userlist.c
+++ b/src/core/os_userlist.c
@@ -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());
}