Committer  : entrope
CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Commit time: 2005-12-29 04:55:26 UTC

Modified files:
     ChangeLog include/ircd.h ircd/channel.c ircd/dbuf.c ircd/hash.c
     ircd/ircd.c ircd/ircd_features.c ircd/ircd_parser.y
     ircd/ircd_res.c ircd/jupe.c ircd/listener.c ircd/m_join.c
     ircd/m_nick.c ircd/os_generic.c ircd/parse.c ircd/s_auth.c
     ircd/s_bsd.c ircd/s_conf.c ircd/s_debug.c ircd/s_misc.c
     ircd/s_serv.c ircd/s_user.c ircd/send.c ircd/uping.c
     ircd/userload.c ircd/whowas.c

Removed files:
     include/sys.h

Log message:

Kill the almost empty sys.h.

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.758 ircu2.10/ChangeLog:1.759
--- ircu2.10/ChangeLog:1.758    Wed Dec 28 20:32:20 2005
+++ ircu2.10/ChangeLog  Wed Dec 28 20:55:13 2005
@@ -1,5 +1,31 @@
 2005-12-28  Michael Poole <[EMAIL PROTECTED]>
 
+       * include/sys.h: Delete this file.
+
+       * include/ircd.h: Move its definitions here.  Update MINOR_PROTOCOL.
+
+       * ircd/channel.c: No longer #include "sys.h", use "ircd.h" instead.
+
+       * ircd/dbuf.c, ircd/ircd.c, ircd/ircd_res.c: Likewise.
+
+       * ircd/listener.c, ircd/m_join.c, ircd/m_nick.c: Likewise.
+
+       * ircd/os_generic.c, ircd/uping.c: Likewise.
+
+       * ircd/hash.c: No longer #include "sys.h".  (It was unused.)
+
+       * ircd/ircd_features.c, ircd/jupe.c, ircd/parse.c: Likewise.
+
+       * ircd/s_auth.c, ircd/s_bsd.c, ircd/s_conf.c: Likewise.
+
+       * ircd/s_debug.c, ircd/s_misc.c, ircd/s_serv.c: Likewise.
+
+       * ircd/s_user.c, ircd/send.c, ircd/userload.c: Likewise.
+
+       * ircd/whowas.c: Likewise.
+
+2005-12-28  Michael Poole <[EMAIL PROTECTED]>
+
        * acinclude.m4: Properly quote function names.
 
        * aclocal.m4: Regenerate.
Index: ircu2.10/include/ircd.h
diff -u ircu2.10/include/ircd.h:1.14 ircu2.10/include/ircd.h:1.15
--- ircu2.10/include/ircd.h:1.14        Mon Oct  4 21:14:44 2004
+++ ircu2.10/include/ircd.h     Wed Dec 28 20:55:14 2005
@@ -1,6 +1,6 @@
 /** @file ircd.h
  * @brief Global data for the daemon.
- * @version $Id: ircd.h,v 1.14 2004/10/05 04:14:44 entrope Exp $
+ * @version $Id: ircd.h,v 1.15 2005/12/29 04:55:14 entrope Exp $
  */
 #ifndef INCLUDED_ircd_h
 #define INCLUDED_ircd_h
@@ -29,11 +29,14 @@
 #define TStime() (CurrentTime + TSoffset) /**< Current network time*/
 #define OLDEST_TS 780000000    /**< Any TS older than this is bogus */
 #define BadPtr(x) (!(x) || (*(x) == '\0')) /**< Is \a x a bad string? */
+#define IRCD_MAX(a, b)  ((a) > (b) ? (a) : (b)) /**< Find maximum of \a a and 
\a b. */
+#define IRCD_MIN(a, b)  ((a) < (b) ? (a) : (b)) /**< Find minimum of \a a and 
\a b. */
+#define MAXCLIENTS (MAXCONNECTIONS-24) /**< Maximum number of clients to 
accept. */
 
 /* Miscellaneous defines */
 
 #define UDP_PORT        "7007"  /**< Default port for server-to-server pings. 
*/
-#define MINOR_PROTOCOL  "09"    /**< Minimum protocol version supported. */
+#define MINOR_PROTOCOL  "10"    /**< Minimum protocol version supported. */
 #define MAJOR_PROTOCOL  "10"    /**< Current protocol version. */
 #define BASE_VERSION    "u2.10" /**< Base name of IRC daemon version. */
 
Index: ircu2.10/include/sys.h
diff -u ircu2.10/include/sys.h:1.6 ircu2.10/include/sys.h:removed
--- ircu2.10/include/sys.h:1.6  Mon Jul 11 19:13:10 2005
+++ ircu2.10/include/sys.h      Wed Dec 28 20:55:26 2005
@@ -1,34 +0,0 @@
-/*
- * IRC - Internet Relay Chat, include/sys.h
- * Copyright (C) 1990 University of Oulu, Computing Center
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 1, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- * $Id: sys.h,v 1.6 2005/07/12 02:13:10 entrope Exp $
- */
-#ifndef INCLUDED_sys_h
-#define INCLUDED_sys_h
-
-/*
- * safety margin so we can always have one spare fd, for motd/authd or
- * whatever else.  -24 allows "safety" margin of 10 listen ports, 8 servers
- * and space reserved for logfiles, DNS sockets and identd sockets etc.
- */
-#define MAXCLIENTS      (MAXCONNECTIONS-24)
-
-#define IRCD_MAX(a, b)  ((a) > (b) ? (a) : (b))
-#define IRCD_MIN(a, b)  ((a) < (b) ? (a) : (b))
-
-#endif /* INCLUDED_sys_h */
Index: ircu2.10/ircd/channel.c
diff -u ircu2.10/ircd/channel.c:1.165 ircu2.10/ircd/channel.c:1.166
--- ircu2.10/ircd/channel.c:1.165       Thu Nov 17 18:30:57 2005
+++ ircu2.10/ircd/channel.c     Wed Dec 28 20:55:14 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief Channel management and maintenance
- * @version $Id: channel.c,v 1.165 2005/11/18 02:30:57 entrope Exp $
+ * @version $Id: channel.c,v 1.166 2005/12/29 04:55:14 entrope Exp $
  */
 #include "config.h"
 
@@ -50,7 +50,6 @@
 #include "s_user.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "whowas.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
Index: ircu2.10/ircd/dbuf.c
diff -u ircu2.10/ircd/dbuf.c:1.12 ircu2.10/ircd/dbuf.c:1.13
--- ircu2.10/ircd/dbuf.c:1.12   Fri Dec 10 21:13:44 2004
+++ ircu2.10/ircd/dbuf.c        Wed Dec 28 20:55:16 2005
@@ -18,17 +18,17 @@
  */
 /** @file
  * @brief Implementation of functions dealing with data buffers.
- * @version $Id: dbuf.c,v 1.12 2004/12/11 05:13:44 klmitch Exp $
+ * @version $Id: dbuf.c,v 1.13 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
 #include "dbuf.h"
+#include "ircd.h"
 #include "ircd_alloc.h"
 #include "ircd_chattr.h"
 #include "ircd_features.h"
 #include "ircd_log.h"
 #include "send.h"
-#include "sys.h"       /* MIN */
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <string.h>
Index: ircu2.10/ircd/hash.c
diff -u ircu2.10/ircd/hash.c:1.18 ircu2.10/ircd/hash.c:1.19
--- ircu2.10/ircd/hash.c:1.18   Mon Jun 27 06:25:51 2005
+++ ircu2.10/ircd/hash.c        Wed Dec 28 20:55:16 2005
@@ -36,7 +36,6 @@
 #include "random.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <limits.h>
@@ -46,7 +45,7 @@
 
 /** @file
  * @brief Hash table management.
- * @version $Id: hash.c,v 1.18 2005/06/27 13:25:51 entrope Exp $
+ * @version $Id: hash.c,v 1.19 2005/12/29 04:55:16 entrope Exp $
  *
  * This file used to use some very complicated hash function.  Now it
  * uses CRC-32, but effectively remaps each input byte according to a
Index: ircu2.10/ircd/ircd.c
diff -u ircu2.10/ircd/ircd.c:1.92 ircu2.10/ircd/ircd.c:1.93
--- ircu2.10/ircd/ircd.c:1.92   Mon Oct 17 20:20:53 2005
+++ ircu2.10/ircd/ircd.c        Wed Dec 28 20:55:16 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief Entry point and other initialization functions for the daemon.
- * @version $Id: ircd.c,v 1.92 2005/10/18 03:20:53 entrope Exp $
+ * @version $Id: ircd.c,v 1.93 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -55,7 +55,6 @@
 #include "s_misc.h"
 #include "s_stats.h"
 #include "send.h"
-#include "sys.h"
 #include "uping.h"
 #include "userload.h"
 #include "version.h"
Index: ircu2.10/ircd/ircd_features.c
diff -u ircu2.10/ircd/ircd_features.c:1.54 ircu2.10/ircd/ircd_features.c:1.55
--- ircu2.10/ircd/ircd_features.c:1.54  Thu Nov 17 18:30:57 2005
+++ ircu2.10/ircd/ircd_features.c       Wed Dec 28 20:55:16 2005
@@ -18,7 +18,7 @@
  */
 /** @file
  * @brief Implementation of configurable feature support.
- * @version $Id: ircd_features.c,v 1.54 2005/11/18 02:30:57 entrope Exp $
+ * @version $Id: ircd_features.c,v 1.55 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -44,7 +44,6 @@
 #include "s_user.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"    /* FALSE bleah */
 #include "whowas.h"    /* whowas_realloc */
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
Index: ircu2.10/ircd/ircd_parser.y
diff -u ircu2.10/ircd/ircd_parser.y:1.58 ircu2.10/ircd/ircd_parser.y:1.59
--- ircu2.10/ircd/ircd_parser.y:1.58    Tue Dec 13 15:38:39 2005
+++ ircu2.10/ircd/ircd_parser.y Wed Dec 28 20:55:16 2005
@@ -17,7 +17,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  *  USA.
- * $Id: ircd_parser.y,v 1.58 2005/12/13 23:38:39 entrope Exp $
+ * $Id: ircd_parser.y,v 1.59 2005/12/29 04:55:16 entrope Exp $
  */
 %{
 
@@ -53,7 +53,6 @@
 #include "s_misc.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
Index: ircu2.10/ircd/ircd_res.c
diff -u ircu2.10/ircd/ircd_res.c:1.25 ircu2.10/ircd/ircd_res.c:1.26
--- ircu2.10/ircd/ircd_res.c:1.25       Sat Nov 12 18:05:35 2005
+++ ircu2.10/ircd/ircd_res.c    Wed Dec 28 20:55:16 2005
@@ -18,7 +18,7 @@
  */
 /** @file
  * @brief IRC resolver functions.
- * @version $Id: ircd_res.c,v 1.25 2005/11/13 02:05:35 entrope Exp $
+ * @version $Id: ircd_res.c,v 1.26 2005/12/29 04:55:16 entrope Exp $
  */
 
 #include "client.h"
@@ -36,7 +36,6 @@
 #include "s_debug.h"
 #include "s_stats.h"
 #include "send.h"
-#include "sys.h"
 #include "res.h"
 #include "ircd_reslib.h"
 
Index: ircu2.10/ircd/jupe.c
diff -u ircu2.10/ircd/jupe.c:1.20 ircu2.10/ircd/jupe.c:1.21
--- ircu2.10/ircd/jupe.c:1.20   Fri Dec 10 21:13:45 2004
+++ ircu2.10/ircd/jupe.c        Wed Dec 28 20:55:16 2005
@@ -20,7 +20,7 @@
  */
 /** @file
  * @brief Implementation of juped server handling functions.
- * @version $Id: jupe.c,v 1.20 2004/12/11 05:13:45 klmitch Exp $
+ * @version $Id: jupe.c,v 1.21 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -41,7 +41,6 @@
 #include "s_misc.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"    /* FALSE bleah */
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <string.h>
Index: ircu2.10/ircd/listener.c
diff -u ircu2.10/ircd/listener.c:1.28 ircu2.10/ircd/listener.c:1.29
--- ircu2.10/ircd/listener.c:1.28       Mon Aug 15 16:22:50 2005
+++ ircu2.10/ircd/listener.c    Wed Dec 28 20:55:16 2005
@@ -18,7 +18,7 @@
  */
 /** @file
  * @brief Implementation for handling listening sockets.
- * @version $Id: listener.c,v 1.28 2005/08/15 23:22:50 entrope Exp $
+ * @version $Id: listener.c,v 1.29 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -40,7 +40,6 @@
 #include "s_misc.h"
 #include "s_stats.h"
 #include "send.h"
-#include "sys.h"         /* MAXCLIENTS */
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <stdio.h>
Index: ircu2.10/ircd/m_join.c
diff -u ircu2.10/ircd/m_join.c:1.42 ircu2.10/ircd/m_join.c:1.43
--- ircu2.10/ircd/m_join.c:1.42 Fri Dec 23 09:28:20 2005
+++ ircu2.10/ircd/m_join.c      Wed Dec 28 20:55:16 2005
@@ -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_join.c,v 1.42 2005/12/23 17:28:20 klmitch Exp $
+ * $Id: m_join.c,v 1.43 2005/12/29 04:55:16 entrope Exp $
  */
 
 #include "config.h"
@@ -41,7 +41,6 @@
 #include "s_debug.h"
 #include "s_user.h"
 #include "send.h"
-#include "sys.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <stdlib.h>
Index: ircu2.10/ircd/m_nick.c
diff -u ircu2.10/ircd/m_nick.c:1.26 ircu2.10/ircd/m_nick.c:1.27
--- ircu2.10/ircd/m_nick.c:1.26 Tue Nov 15 20:20:43 2005
+++ ircu2.10/ircd/m_nick.c      Wed Dec 28 20:55:16 2005
@@ -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_nick.c,v 1.26 2005/11/16 04:20:43 entrope Exp $
+ * $Id: m_nick.c,v 1.27 2005/12/29 04:55:16 entrope Exp $
  */
 
 /*
@@ -97,7 +97,6 @@
 #include "s_misc.h"
 #include "s_user.h"
 #include "send.h"
-#include "sys.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <stdlib.h>
Index: ircu2.10/ircd/os_generic.c
diff -u ircu2.10/ircd/os_generic.c:1.23 ircu2.10/ircd/os_generic.c:1.24
--- ircu2.10/ircd/os_generic.c:1.23     Sun May  8 18:55:26 2005
+++ ircu2.10/ircd/os_generic.c  Wed Dec 28 20:55:16 2005
@@ -18,19 +18,19 @@
  */
 /** @file
  * @brief Implementation of OS-dependent operations.
- * @version $Id: os_generic.c,v 1.23 2005/05/09 01:55:26 entrope Exp $
+ * @version $Id: os_generic.c,v 1.24 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
 #define _XOPEN_SOURCE  600 /**< make limits.h #define IOV_MAX */
 #define __EXTENSIONS__  1   /**< make Solaris netinet/in.h know IPv6 */
 
+#include "ircd.h"
 #include "ircd_osdep.h"
 #include "msgq.h"
 #include "ircd_log.h"
 #include "res.h"
 #include "s_bsd.h"
-#include "sys.h"
 
 /* Include file dependency notes:
  * FreeBSD requires struct timeval from sys/time.h before struct
Index: ircu2.10/ircd/parse.c
diff -u ircu2.10/ircd/parse.c:1.55 ircu2.10/ircd/parse.c:1.56
--- ircu2.10/ircd/parse.c:1.55  Fri Sep 30 20:37:43 2005
+++ ircu2.10/ircd/parse.c       Wed Dec 28 20:55:16 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief Parse input from IRC clients and other servers.
- * @version $Id: parse.c,v 1.55 2005/10/01 03:37:43 entrope Exp $
+ * @version $Id: parse.c,v 1.56 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -49,7 +49,6 @@
 #include "s_user.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "whowas.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
Index: ircu2.10/ircd/s_auth.c
diff -u ircu2.10/ircd/s_auth.c:1.37 ircu2.10/ircd/s_auth.c:1.38
--- ircu2.10/ircd/s_auth.c:1.37 Mon Jun 27 06:25:51 2005
+++ ircu2.10/ircd/s_auth.c      Wed Dec 28 20:55:16 2005
@@ -27,7 +27,7 @@
  */
 /** @file
  * @brief Implementation of DNS and ident lookups.
- * @version $Id: s_auth.c,v 1.37 2005/06/27 13:25:51 entrope Exp $
+ * @version $Id: s_auth.c,v 1.38 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -52,7 +52,6 @@
 #include "s_misc.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"               /* TRUE bleah */
 
 #include <netdb.h>             /* struct hostent */
 #include <string.h>
Index: ircu2.10/ircd/s_bsd.c
diff -u ircu2.10/ircd/s_bsd.c:1.80 ircu2.10/ircd/s_bsd.c:1.81
--- ircu2.10/ircd/s_bsd.c:1.80  Mon Jul 11 19:13:10 2005
+++ ircu2.10/ircd/s_bsd.c       Wed Dec 28 20:55:16 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief Functions that now (or in the past) relied on BSD APIs.
- * @version $Id: s_bsd.c,v 1.80 2005/07/12 02:13:10 entrope Exp $
+ * @version $Id: s_bsd.c,v 1.81 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -54,7 +54,6 @@
 #include "s_user.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "uping.h"
 #include "version.h"
 
Index: ircu2.10/ircd/s_conf.c
diff -u ircu2.10/ircd/s_conf.c:1.82 ircu2.10/ircd/s_conf.c:1.83
--- ircu2.10/ircd/s_conf.c:1.82 Wed Oct  5 17:48:15 2005
+++ ircu2.10/ircd/s_conf.c      Wed Dec 28 20:55:16 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief ircd configuration file driver
- * @version $Id: s_conf.c,v 1.82 2005/10/06 00:48:15 entrope Exp $
+ * @version $Id: s_conf.c,v 1.83 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -54,7 +54,6 @@
 #include "s_misc.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <errno.h>
Index: ircu2.10/ircd/s_debug.c
diff -u ircu2.10/ircd/s_debug.c:1.41 ircu2.10/ircd/s_debug.c:1.42
--- ircu2.10/ircd/s_debug.c:1.41        Sat Jun 18 19:31:27 2005
+++ ircu2.10/ircd/s_debug.c     Wed Dec 28 20:55:16 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief Debug support for the ircd.
- * @version $Id: s_debug.c,v 1.41 2005/06/19 02:31:27 entrope Exp $
+ * @version $Id: s_debug.c,v 1.42 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -49,7 +49,6 @@
 #include "s_stats.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "whowas.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
Index: ircu2.10/ircd/s_misc.c
diff -u ircu2.10/ircd/s_misc.c:1.50 ircu2.10/ircd/s_misc.c:1.51
--- ircu2.10/ircd/s_misc.c:1.50 Thu Jul 14 20:02:50 2005
+++ ircu2.10/ircd/s_misc.c      Wed Dec 28 20:55:16 2005
@@ -22,7 +22,7 @@
  */
 /** @file
  * @brief Miscellaneous support functions.
- * @version $Id: s_misc.c,v 1.50 2005/07/15 03:02:50 entrope Exp $
+ * @version $Id: s_misc.c,v 1.51 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -54,7 +54,6 @@
 #include "s_user.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "uping.h"
 #include "userload.h"
 
Index: ircu2.10/ircd/s_serv.c
diff -u ircu2.10/ircd/s_serv.c:1.40 ircu2.10/ircd/s_serv.c:1.41
--- ircu2.10/ircd/s_serv.c:1.40 Mon Jun 27 17:42:06 2005
+++ ircu2.10/ircd/s_serv.c      Wed Dec 28 20:55:16 2005
@@ -22,7 +22,7 @@
  */
 /** @file
  * @brief Miscellaneous server support functions.
- * @version $Id: s_serv.c,v 1.40 2005/06/28 00:42:06 entrope Exp $
+ * @version $Id: s_serv.c,v 1.41 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -55,7 +55,6 @@
 #include "s_user.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "userload.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
Index: ircu2.10/ircd/s_user.c
diff -u ircu2.10/ircd/s_user.c:1.100 ircu2.10/ircd/s_user.c:1.101
--- ircu2.10/ircd/s_user.c:1.100        Mon Oct 17 20:20:53 2005
+++ ircu2.10/ircd/s_user.c      Wed Dec 28 20:55:16 2005
@@ -22,7 +22,7 @@
  */
 /** @file
  * @brief Miscellaneous user-related helper functions.
- * @version $Id: s_user.c,v 1.100 2005/10/18 03:20:53 entrope Exp $
+ * @version $Id: s_user.c,v 1.101 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -58,7 +58,6 @@
 #include "s_serv.h" /* max_client_count */
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "userload.h"
 #include "version.h"
 #include "whowas.h"
Index: ircu2.10/ircd/send.c
diff -u ircu2.10/ircd/send.c:1.55 ircu2.10/ircd/send.c:1.56
--- ircu2.10/ircd/send.c:1.55   Wed Dec 15 19:28:50 2004
+++ ircu2.10/ircd/send.c        Wed Dec 28 20:55:16 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief Send messages to certain targets.
- * @version $Id: send.c,v 1.55 2004/12/16 03:28:50 entrope Exp $
+ * @version $Id: send.c,v 1.56 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -42,7 +42,6 @@
 #include "s_misc.h"
 #include "s_user.h"
 #include "struct.h"
-#include "sys.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <stdio.h>
Index: ircu2.10/ircd/uping.c
diff -u ircu2.10/ircd/uping.c:1.23 ircu2.10/ircd/uping.c:1.24
--- ircu2.10/ircd/uping.c:1.23  Sun Mar 20 08:06:30 2005
+++ ircu2.10/ircd/uping.c       Wed Dec 28 20:55:16 2005
@@ -18,7 +18,7 @@
  */
 /** @file
  * @brief UDP ping implementation.
- * @version $Id: uping.c,v 1.23 2005/03/20 16:06:30 entrope Exp $
+ * @version $Id: uping.c,v 1.24 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -40,7 +40,6 @@
 #include "s_misc.h"
 #include "s_user.h"
 #include "send.h"
-#include "sys.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
 #include <errno.h>
Index: ircu2.10/ircd/userload.c
diff -u ircu2.10/ircd/userload.c:1.11 ircu2.10/ircd/userload.c:1.12
--- ircu2.10/ircd/userload.c:1.11       Mon Oct  4 21:21:36 2004
+++ ircu2.10/ircd/userload.c    Wed Dec 28 20:55:16 2005
@@ -25,7 +25,7 @@
  */
 /** @file
  * @brief Userload tracking and statistics.
- * @version $Id: userload.c,v 1.11 2004/10/05 04:21:36 entrope Exp $
+ * @version $Id: userload.c,v 1.12 2005/12/29 04:55:16 entrope Exp $
  */
 #include "config.h"
 
@@ -39,7 +39,6 @@
 #include "s_stats.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 
 #include <stdio.h>
 #include <string.h>
Index: ircu2.10/ircd/whowas.c
diff -u ircu2.10/ircd/whowas.c:1.17 ircu2.10/ircd/whowas.c:1.18
--- ircu2.10/ircd/whowas.c:1.17 Sun Mar 20 08:06:30 2005
+++ ircu2.10/ircd/whowas.c      Wed Dec 28 20:55:16 2005
@@ -49,7 +49,6 @@
 #include "s_user.h"
 #include "send.h"
 #include "struct.h"
-#include "sys.h"
 #include "msg.h"
 
 /* #include <assert.h> -- Now using assert in ircd_log.h */
@@ -69,7 +68,7 @@
 
 /** @file
  * @brief Manipulation functions for the whowas list.
- * @version $Id: whowas.c,v 1.17 2005/03/20 16:06:30 entrope Exp $
+ * @version $Id: whowas.c,v 1.18 2005/12/29 04:55:16 entrope Exp $
  *
  * Since the introduction of numeric nicks (at least for upstream messages,
  * like MODE +o &lt;nick>, KICK #chan &lt;nick>, KILL &lt;nick> etc), there is 
no
----------------------- End of diff -----------------------
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches

Reply via email to