summaryrefslogtreecommitdiff
path: root/src/modules/m_operchans.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-15 19:23:01 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-15 19:23:01 +0000
commitfeaf72ecb48470114fbe3f3058b5f4b9622b88a5 (patch)
tree838377c1155b6fdb00460d6e52ffcb4bdf17f053 /src/modules/m_operchans.cpp
parentd715c1936e96ce05d9cc4eea2fd4afab3ad02539 (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/modules/m_operchans.cpp')
-rw-r--r--src/modules/m_operchans.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_operchans.cpp b/src/modules/m_operchans.cpp
index 1ec4b4fc7..fb181d1f5 100644
--- a/src/modules/m_operchans.cpp
+++ b/src/modules/m_operchans.cpp
@@ -49,7 +49,7 @@ class ModuleOperChans : public Module
{
chanrec* chan = (chanrec*)target;
- if ((Srv->IsUlined(user->nick)) || (Srv->IsUlined(user->server)) || (!*user->server) || (strchr(user->modes,'o')))
+ if ((Srv->IsUlined(user->nick)) || (Srv->IsUlined(user->server)) || (!*user->server) || (*user->oper))
{
log(DEBUG,"Allowing mode +O");
return 1;
@@ -75,7 +75,7 @@ class ModuleOperChans : public Module
virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname)
{
- if (!strchr(user->modes,'o'))
+ if (!*user->oper)
{
if (chan)
{