From d715c1936e96ce05d9cc4eea2fd4afab3ad02539 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 15 Feb 2006 19:10:44 +0000 Subject: Now has no strchr() at all. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3220 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_denychans.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') diff --git a/src/modules/m_denychans.cpp b/src/modules/m_denychans.cpp index 709a285a0..ba66d2294 100644 --- a/src/modules/m_denychans.cpp +++ b/src/modules/m_denychans.cpp @@ -59,15 +59,13 @@ class ModuleDenyChannels : public Module virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { - bool isoper = strchr(user->modes,'o') ? true : false; - for (int j =0; j < Conf->Enumerate("badchan"); j++) { irc::string cn = Conf->ReadValue("badchan","name",j).c_str(); irc::string thischan = cname; if (thischan == cn) { - if ((Conf->ReadFlag("badchan","allowopers",j)) && isoper == true) + if ((Conf->ReadFlag("badchan","allowopers",j)) && *user->oper) { return 0; } -- cgit v1.2.3