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

Comparing ircd-hybrid/trunk/src/send.c (file contents):
Revision 4792 by michael, Tue Oct 28 12:44:43 2014 UTC vs.
Revision 4795 by michael, Tue Oct 28 13:11:47 2014 UTC

# Line 572 | Line 572 | sendto_common_channels_local(struct Clie
572   /* sendto_channel_local()
573   *
574   * inputs       - member status mask, e.g. CHFL_CHANOP | CHFL_VOICE
575 *              - whether to ignore +D clients (YES/NO)
575   *              - pointer to channel to send to
576   *              - var args pattern
577   * output       - NONE
# Line 580 | Line 579 | sendto_common_channels_local(struct Clie
579   *                locally connected to this server.
580   */
581   void
582 < sendto_channel_local(unsigned int type, int nodeaf, struct Channel *chptr,
582 > sendto_channel_local(unsigned int type, struct Channel *chptr,
583                       const char *pattern, ...)
584   {
585    va_list args;
# Line 601 | Line 600 | sendto_channel_local(unsigned int type,
600      if (type && (ms->flags & type) == 0)
601        continue;
602  
603 <    if (IsDefunct(target_p) ||
605 <        (nodeaf && HasUMode(target_p, UMODE_DEAF)))
603 >    if (IsDefunct(target_p))
604        continue;
605  
606      send_message(target_p, buffer);
# Line 643 | Line 641 | sendto_channel_local_butone(struct Clien
641      if (one && target_p == one->from)
642        continue;
643  
644 <    if (IsDefunct(target_p) || HasUMode(target_p, UMODE_DEAF))
644 >    if (IsDefunct(target_p))
645        continue;
646  
647      if (poscap && HasCap(target_p, poscap) != poscap)

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)