summaryrefslogtreecommitdiff
path: root/src/command_parse.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/command_parse.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/command_parse.cpp')
-rw-r--r--src/command_parse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index e5fc8fd7d..0c61fd8b1 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -596,7 +596,7 @@ void CommandParser::ProcessCommand(userrec *user, char* cmd)
return;
}
}
- if ((user->registered == 7) && (!strchr(user->modes,'o')))
+ if ((user->registered == 7) && (!*user->oper))
{
std::stringstream dcmds(Config->DisabledCommands);
while (!dcmds.eof())