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

Comparing ircd-hybrid/trunk/modules/m_stats.c (file contents):
Revision 5531 by michael, Wed Feb 11 18:15:09 2015 UTC vs.
Revision 5542 by michael, Thu Feb 12 13:28:50 2015 UTC

# Line 591 | Line 591 | stats_deny(struct Client *source_p, int
591  
592        conf = arec->conf;
593  
594 <      /* Don't report a tdline as a dline */
594 >      /* Don't report a temporary dline as permanent dline */
595        if (conf->until)
596          continue;
597  
# Line 623 | Line 623 | stats_tdeny(struct Client *source_p, int
623  
624        conf = arec->conf;
625  
626 <      /* Don't report a permanent dline as a tdline */
626 >      /* Don't report a permanent dline as temporary dline */
627        if (!conf->until)
628          continue;
629  
# Line 873 | Line 873 | report_auth(struct Client *source_p, int
873        if (!MyOper(source_p) && IsConfDoSpoofIp(conf))
874          continue;
875  
876      /* We are doing a partial list, based on what matches the u@h of the
877       * sender, so prepare the strings for comparing --fl_
878       */
876        sendto_one_numeric(source_p, &me, RPL_STATSILINE, 'I',
877                           conf->name == NULL ? "*" : conf->name,
878                           show_iline_prefix(source_p, conf),
# Line 983 | Line 980 | stats_tklines(struct Client *source_p, i
980      if (!conf)
981        return;
982  
983 <    /* Don't report a permanent kline as a tkline */
983 >    /* Don't report a permanent kline as temporary kline */
984      if (!conf->until)
985        return;
986  
# Line 1019 | Line 1016 | stats_klines(struct Client *source_p, in
1016      if (!conf)
1017        return;
1018  
1019 <    /* Don't report a tkline as a kline */
1019 >    /* Don't report a temporary kline as permanent kline */
1020      if (conf->until)
1021        return;
1022  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines