Committer  : klmitch
CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Branch tags: u2_10_11_07
Commit time: 2004-09-11 17:36:32 UTC

Modified files:
  Tag: u2_10_11_07
     ChangeLog include/ircd_features.h ircd/ircd_features.c
     ircd/m_whois.c

Log message:

Author: Kev <[EMAIL PROTECTED]>
Log message:

Rename FEAT_HIS_LOCAL_CHAN_WHOIS to satisfy reed :P

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.130.2.20 ircu2.10/ChangeLog:1.290.2.130.2.21
--- ircu2.10/ChangeLog:1.290.2.130.2.20 Sat Sep 11 10:00:31 2004
+++ ircu2.10/ChangeLog  Sat Sep 11 10:36:18 2004
@@ -1,5 +1,14 @@
 2004-09-11  Kevin L Mitchell  <[EMAIL PROTECTED]>
 
+       * ircd/m_whois.c (do_whois): rename FEAT_HIS_LOCAL_CHAN_WHOIS to
+       satisfy reed :P
+
+       * ircd/ircd_features.c: rename FEAT_HIS_LOCAL_CHAN_WHOIS to
+       satisfy reed :P
+
+       * include/ircd_features.h: rename FEAT_HIS_LOCAL_CHAN_WHOIS to
+       satisfy reed :P
+
        * include/patchlevel.h (PATCHLEVEL): bump patch level
 
        * ircd/channel.c (is_banned): apply patch #888640
Index: ircu2.10/include/ircd_features.h
diff -u ircu2.10/include/ircd_features.h:1.11.2.12.2.1 
ircu2.10/include/ircd_features.h:1.11.2.12.2.2
--- ircu2.10/include/ircd_features.h:1.11.2.12.2.1      Sat Sep 11 09:23:41 2004
+++ ircu2.10/include/ircd_features.h    Sat Sep 11 10:36:21 2004
@@ -18,7 +18,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
- * $Id: ircd_features.h,v 1.11.2.12.2.1 2004/09/11 16:23:41 klmitch Exp $
+ * $Id: ircd_features.h,v 1.11.2.12.2.2 2004/09/11 17:36:21 klmitch Exp $
  */
 
 struct Client;
@@ -167,6 +167,7 @@
   FEAT_HIS_STATS_z,
   FEAT_HIS_WHOIS_SERVERNAME,
   FEAT_HIS_WHOIS_IDLETIME,
+  FEAT_HIS_WHOIS_LOCALCHAN,
   FEAT_HIS_WHO_SERVERNAME,
   FEAT_HIS_WHO_HOPCOUNT,
   FEAT_HIS_BANWHO,
@@ -174,7 +175,6 @@
   FEAT_HIS_REWRITE,
   FEAT_HIS_REMOTE,
   FEAT_HIS_NETSPLIT,
-  FEAT_HIS_LOCAL_CHAN_WHOIS,
   FEAT_HIS_SERVERNAME,
   FEAT_HIS_SERVERINFO,
   FEAT_HIS_URLSERVERS,
Index: ircu2.10/ircd/ircd_features.c
diff -u ircu2.10/ircd/ircd_features.c:1.15.2.13.2.2 
ircu2.10/ircd/ircd_features.c:1.15.2.13.2.3
--- ircu2.10/ircd/ircd_features.c:1.15.2.13.2.2 Sat Sep 11 09:23:41 2004
+++ ircu2.10/ircd/ircd_features.c       Sat Sep 11 10:36:22 2004
@@ -16,7 +16,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
- * $Id: ircd_features.c,v 1.15.2.13.2.2 2004/09/11 16:23:41 klmitch Exp $
+ * $Id: ircd_features.c,v 1.15.2.13.2.3 2004/09/11 17:36:22 klmitch Exp $
  */
 #include "config.h"
 
@@ -374,6 +374,7 @@
   F_B(HIS_STATS_z, 0, 1, 0),
   F_B(HIS_WHOIS_SERVERNAME, 0, 1, 0),
   F_B(HIS_WHOIS_IDLETIME, 0, 1, 0),
+  F_B(HIS_WHOIS_LOCALCHAN, 0, 1, 0),
   F_B(HIS_WHO_SERVERNAME, 0, 1, 0),
   F_B(HIS_WHO_HOPCOUNT, 0, 1, 0),
   F_B(HIS_BANWHO, 0, 1, 0),
@@ -381,7 +382,6 @@
   F_B(HIS_REWRITE, 0, 1, 0),
   F_I(HIS_REMOTE, 0, 1, 0),
   F_B(HIS_NETSPLIT, 0, 1, 0),
-  F_B(HIS_LOCAL_CHAN_WHOIS, 0, 1, 0),
   F_S(HIS_SERVERNAME, 0, "*.undernet.org", 0),
   F_S(HIS_SERVERINFO, 0, "The Undernet Underworld", 0),
   F_S(HIS_URLSERVERS, 0, "http://www.undernet.org/servers.php";, 0),
Index: ircu2.10/ircd/m_whois.c
diff -u ircu2.10/ircd/m_whois.c:1.19.2.12.2.1 ircu2.10/ircd/m_whois.c:1.19.2.12.2.2
--- ircu2.10/ircd/m_whois.c:1.19.2.12.2.1       Sat Sep 11 09:23:41 2004
+++ ircu2.10/ircd/m_whois.c     Sat Sep 11 10:36:22 2004
@@ -20,7 +20,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
- * $Id: m_whois.c,v 1.19.2.12.2.1 2004/09/11 16:23:41 klmitch Exp $
+ * $Id: m_whois.c,v 1.19.2.12.2.2 2004/09/11 17:36:22 klmitch Exp $
  */
 
 /*
@@ -163,7 +163,7 @@
        * remote WHOIS --ULtimaTe_
        */
        if (IsLocalChannel(chptr->chname) && (parc == 2) &&
-          feature_bool(FEAT_HIS_LOCAL_CHAN_WHOIS) && (acptr != sptr) &&
+          feature_bool(FEAT_HIS_WHOIS_LOCALCHAN) && (acptr != sptr) &&
           !IsAnOper(sptr))
          continue; 
 
----------------------- End of diff -----------------------

Reply via email to