From: brain Date: Sat, 8 Jul 2006 15:17:42 +0000 (+0000) Subject: Fix for permissions :p X-Git-Tag: v2.0.23~8064 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=2b2677dec55fafa85a19e7d84b539c239a50187c;p=user%2Fhenk%2Fcode%2Finspircd.git Fix for permissions :p git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4168 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/mode.cpp b/src/mode.cpp index 247ef2edd..3db2a4571 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -353,14 +353,21 @@ void ModeParser::Process(char **parameters, int pcnt, userrec *user, bool server * (e.g. are they a (half)op? */ - if (((!is_uline(user->server)) && (!servermode)) || (cstatus(user, targetchannel) < STATUS_HOP)) + if (cstatus(user, targetchannel) < STATUS_HOP) { - /* Not enough permission: - * NOT a uline and NOT a servermode, - * OR, NOT halfop or above. - */ - WriteServ(user->fd,"482 %s %s :You're not a channel (half)operator",user->nick, targetchannel->name); - return; + /* We don't have halfop */ + log(DEBUG,"The user is not a halfop or above, checking other reasons for being able to set the modes"); + + /* Are we a uline or is it a servermode? */ + if ((!is_uline(user->server)) && (!servermode)) + { + /* Not enough permission: + * NOT a uline and NOT a servermode, + * OR, NOT halfop or above. + */ + WriteServ(user->fd,"482 %s %s :You're not a channel (half)operator",user->nick, targetchannel->name); + return; + } } } else if (targetuser)