diff options
| author | 2006-02-15 19:23:01 +0000 | |
|---|---|---|
| committer | 2006-02-15 19:23:01 +0000 | |
| commit | feaf72ecb48470114fbe3f3058b5f4b9622b88a5 (patch) | |
| tree | 838377c1155b6fdb00460d6e52ffcb4bdf17f053 /src/cmd_stats.cpp | |
| parent | Now has no strchr() at all. (diff) | |
Removed a whole lot of strchr's looking for mode +o where we can do if *user->oper
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3221 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_stats.cpp')
| -rw-r--r-- | src/cmd_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_stats.cpp b/src/cmd_stats.cpp index 98d3987e7..d784b02f6 100644 --- a/src/cmd_stats.cpp +++ b/src/cmd_stats.cpp @@ -136,7 +136,7 @@ void cmd_stats::Handle (char **parameters, int pcnt, userrec *user) int idx = 0; for (user_hash::iterator i = clientlist.begin(); i != clientlist.end(); i++) { - if (strchr(i->second->modes,'o')) + if (*i->second->oper) { WriteServ(user->fd,"249 %s :%s (%s@%s) Idle: %d",user->nick,i->second->nick,i->second->ident,i->second->dhost,(TIME - i->second->idle_lastmsg)); idx++; |
