ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid-8/src/channel.c
(Generate patch)

Comparing ircd-hybrid-7.2/src/channel.c (file contents):
Revision 506 by michael, Fri Mar 3 21:08:34 2006 UTC vs.
Revision 565 by michael, Wed Apr 26 16:52:00 2006 UTC

# Line 742 | Line 742 | can_send(struct Channel *chptr, struct C
742    if (IsServer(source_p))
743      return CAN_SEND_OPV;
744  
745 <  if (MyClient(source_p) && !IsExemptResv(source_p) &&
746 <      !(IsOper(source_p) && ConfigFileEntry.oper_pass_resv) &&
747 <      (!hash_find_resv(chptr->chname) == ConfigChannel.restrict_channels))
748 <    return CAN_SEND_NO;
745 >  if (MyClient(source_p) && !IsExemptResv(source_p))
746 >    if (!(IsOper(source_p) && ConfigFileEntry.oper_pass_resv)
747 >      if (!hash_find_resv(chptr->chname) == ConfigChannel.restrict_channels))
748 >        return CAN_SEND_NO;
749  
750    if (ms != NULL || (ms = find_channel_link(source_p, chptr)))
751    {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines