ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/core/m_message.c
(Generate patch)

Comparing ircd-hybrid/branches/8.2.x/modules/core/m_message.c (file contents):
Revision 3482 by michael, Mon May 5 18:33:57 2014 UTC vs.
Revision 3725 by michael, Sat May 31 16:29:38 2014 UTC

# Line 325 | Line 325 | msg_channel_flags(int p_or_n, const char
325      type = CHFL_VOICE|CHFL_HALFOP|CHFL_CHANOP;
326      c = '+';
327    }
328 #ifdef HALFOPS
328    else if (flags & CHFL_HALFOP)
329    {
330      type = CHFL_HALFOP|CHFL_CHANOP;
331      c = '%';
332     }
334 #endif
333    else
334    {
335      type = CHFL_CHANOP;
# Line 680 | Line 678 | build_target_list(int p_or_n, const char
678      {
679        if (*nick == '@')
680          type |= CHFL_CHANOP;
683 #ifdef HALFOPS
681        else if (*nick == '%')
682          type |= CHFL_CHANOP | CHFL_HALFOP;
686 #endif
683        else if (*nick == '+')
684          type |= CHFL_CHANOP | CHFL_HALFOP | CHFL_VOICE;
685        else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines