diff --git a/bandb/rsdb_snprintf.c b/bandb/rsdb_snprintf.c index 7492219..2fb35de 100644 --- a/bandb/rsdb_snprintf.c +++ b/bandb/rsdb_snprintf.c @@ -6,7 +6,6 @@ * do so under the terms of the GNU General Public License under which * this library is distributed. * - * $Id: rsdb_snprintf.c 26094 2008-09-19 15:33:46Z androsyn $ */ #include "stdinc.h" #include "rsdb.h" diff --git a/bandb/rsdb_sqlite3.c b/bandb/rsdb_sqlite3.c index 2df2bf6..bcdb1eb 100644 --- a/bandb/rsdb_sqlite3.c +++ b/bandb/rsdb_sqlite3.c @@ -28,7 +28,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: rsdb_sqlite3.c 26182 2008-11-11 02:52:41Z androsyn $ */ #include "stdinc.h" #include "rsdb.h" diff --git a/bandb/sqlite3.c b/bandb/sqlite3.c index dcb2828..f2cf540 100644 --- a/bandb/sqlite3.c +++ b/bandb/sqlite3.c @@ -41,7 +41,6 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -70,7 +69,6 @@ ** ** This file defines various limits of what SQLite can process. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -436,7 +434,6 @@ SQLITE_PRIVATE void sqlite3Coverage(int); ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -6044,7 +6041,6 @@ extern "C" ** This is the header file for the generic hash-table implemenation ** used in SQLite. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef _SQLITE_HASH_H_ #define _SQLITE_HASH_H_ @@ -6566,7 +6562,6 @@ typedef struct WhereLevel WhereLevel; ** subsystem. See comments in the source code for a detailed description ** of what each interface routine does. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef _BTREE_H_ #define _BTREE_H_ @@ -6778,7 +6773,6 @@ SQLITE_PRIVATE void sqlite3BtreeMutexArrayInsert(BtreeMutexArray *, Btree *); ** or VDBE. The VDBE implements an abstract machine that runs a ** simple program to access and modify the underlying database. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef _SQLITE_VDBE_H_ #define _SQLITE_VDBE_H_ @@ -7164,7 +7158,6 @@ SQLITE_PRIVATE void sqlite3VdbeComment(Vdbe *, const char *, ...); ** subsystem. The page cache subsystem reads and writes a file a page ** at a time and provides a journal for rollback. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef _PAGER_H_ @@ -7587,7 +7580,6 @@ SQLITE_PRIVATE sqlite3_vfs *sqlite3OsDefaultVfs(void); ** Source files should #include the sqliteInt.h file and let that file ** include this one indirectly. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -9505,7 +9497,6 @@ SQLITE_PRIVATE void (*sqlite3IoTrace) (const char *, ...); ** sqlite3RegisterDateTimeFunctions() found at the bottom of the file. ** All other code has file scope. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ ** ** SQLite processes all times and dates as Julian Day numbers. The ** dates and times are stored as the number of days since noon @@ -11276,7 +11267,6 @@ sqlite3FaultStep(int id) ** This file contains the C functions that implement a memory ** allocation subsystem for use by SQLite. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -11551,7 +11541,6 @@ sqlite3_realloc(void *pPrior, int nBytes) ** This file contains the C functions that implement a memory ** allocation subsystem for use by SQLite. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -12121,7 +12110,6 @@ sqlite3MemdebugMallocCount() ** This version of the memory allocation subsystem is used if ** and only if SQLITE_MEMORY_SIZE is defined. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -12891,7 +12879,6 @@ sqlite3MemdebugDump(const char *zFilename) ** This version of the memory allocation subsystem is used if ** and only if SQLITE_POW2_MEMORY_SIZE is defined. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -13485,7 +13472,6 @@ sqlite3MemdebugDump(const char *zFilename) ** implementation is suitable for testing. ** debugging purposes ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifdef SQLITE_MUTEX_NOOP_DEBUG @@ -13624,7 +13610,6 @@ sqlite3_mutex_notheld(sqlite3_mutex * p) ************************************************************************* ** This file contains the C functions that implement mutexes for OS/2 ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -13915,7 +13900,6 @@ sqlite3_mutex_notheld(sqlite3_mutex * p) ************************************************************************* ** This file contains the C functions that implement mutexes for pthreads ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -14257,7 +14241,6 @@ sqlite3_mutex_notheld(sqlite3_mutex * p) ************************************************************************* ** This file contains the C functions that implement mutexes for win32 ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -14509,7 +14492,6 @@ sqlite3_mutex_notheld(sqlite3_mutex * p) ** Memory allocation functions used throughout sqlite. ** ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -15956,7 +15938,6 @@ sqlite3DebugPrintf(const char *zFormat, ...) ** Random numbers are used by some of the database backends in order ** to generate random integer keys for tables or random filenames. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -16094,7 +16075,6 @@ sqlite3PrngResetState(void) ** This file contains routines used to translate between UTF-8, ** UTF-16, UTF-16BE, and UTF-16LE. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ ** ** Notes on UTF-8: ** @@ -17148,7 +17128,6 @@ sqlite3UtfSelfTest() ** This file contains functions for allocating memory, comparing ** strings, and stuff like that. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -18294,7 +18273,6 @@ sqlite3SafetyCheckSickOrOk(sqlite3 * db) ** This is the implementation of generic hash-tables ** used in SQLite. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* Turn bulk memory into a hash table object by initializing the @@ -25483,7 +25461,6 @@ sqlite3OsDefaultVfs(void) ** start of a transaction, and is thus usually less than a few thousand, ** but can be as large as 2 billion for a really big database. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #define BITVEC_SZ 512 @@ -25854,7 +25831,6 @@ sqlite3BitvecBuiltinTest(int sz, int *aOp) ** file simultaneously, or one process from reading the database while ** another is writing. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef SQLITE_OMIT_DISKIO @@ -31890,7 +31866,6 @@ sqlite3PagerRefdump(Pager * pPager) ** ************************************************************************* ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ ** ** This file contains code used to implement mutexes on Btree objects. ** This code really belongs in btree.c. But btree.c is getting too @@ -31910,7 +31885,6 @@ sqlite3PagerRefdump(Pager * pPager) ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ ** ** This file implements a external (disk-based) database using BTrees. ** For a detailed discussion of BTrees, refer to @@ -32913,7 +32887,6 @@ sqlite3BtreeMutexArrayLeave(BtreeMutexArray * pArray) ** May you share freely, never taking more than you give. ** ************************************************************************* -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ ** ** This file implements a external (disk-based) database using BTrees. ** See the header comment on "btreeInt.h" for additional information. @@ -42590,7 +42563,6 @@ sqlite3ValueBytes(sqlite3_value * pVal, u8 enc) ** to version 2.8.7, all this code was combined into the vdbe.c source file. ** But that file was getting too big so this subroutines were split out. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -47006,7 +46978,6 @@ sqlite3_db_handle(sqlite3_stmt * pStmt) ** in this file for details. If in doubt, do not deviate from existing ** commenting and indentation practices when changing or adding code. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -52637,7 +52608,6 @@ sqlite3VdbeExec(Vdbe * p /* The VDBE */ ** ** This file contains code used to implement incremental BLOB I/O. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -53021,7 +52991,6 @@ sqlite3_blob_bytes(sqlite3_blob * pBlob) ** ************************************************************************* ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifdef SQLITE_ENABLE_ATOMIC_WRITE @@ -53309,7 +53278,6 @@ sqlite3JournalSize(sqlite3_vfs * pVfs) ** This file contains routines used for analyzing expressions and ** for generating VDBE code that evaluates expressions in SQLite. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -57403,7 +57371,6 @@ sqlite3ReleaseTempRange(Parse * pParse, int iReg, int nReg) ** This file contains C code routines that used to generate VDBE code ** that implements the ALTER TABLE command. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -58098,7 +58065,6 @@ sqlite3AlterBeginAddColumn(Parse * pParse, SrcList * pSrc) ************************************************************************* ** This file contains code associated with the ANALYZE command. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef SQLITE_OMIT_ANALYZE @@ -58575,7 +58541,6 @@ sqlite3AnalysisLoad(sqlite3 * db, int iDb) ************************************************************************* ** This file contains code used to implement the ATTACH and DETACH commands. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef SQLITE_OMIT_ATTACH @@ -59183,7 +59148,6 @@ sqlite3FixTriggerStep(DbFixer * pFix, /* Context of the fixation */ ** systems that do not need this facility may omit it by recompiling ** the library with -DSQLITE_OMIT_AUTHORIZATION=1 ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -59454,7 +59418,6 @@ sqlite3AuthContextPop(AuthContext * pContext) ** COMMIT ** ROLLBACK ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -63492,7 +63455,6 @@ sqlite3IndexKeyinfo(Parse * pParse, Index * pIdx) ** This file contains functions used to access the internal hash tables ** of user defined functions and collation sequences. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -63911,7 +63873,6 @@ sqlite3SchemaGet(sqlite3 * db, Btree * pBt) ** This file contains C code routines that are called by the parser ** in order to generate code for DELETE FROM statements. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -64522,7 +64483,6 @@ sqlite3GenerateIndexKey(Parse * pParse, /* Parsing context */ ** sqliteRegisterBuildinFunctions() found at the bottom of the file. ** All other code has file scope. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -66210,7 +66170,6 @@ sqlite3IsLikeFunction(sqlite3 * db, Expr * pExpr, int *pIsNocase, char *aWc) ** This file contains C code routines that are called by the parser ** to handle INSERT statements in SQLite. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -68135,7 +68094,6 @@ xferOptimization(Parse * pParse, /* Parser context */ ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -68330,7 +68288,6 @@ sqlite3_exec(sqlite3 * db, /* The database on which the SQL executes */ ** as extensions by SQLite should #include this file instead of ** sqlite3.h. ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef _SQLITE3EXT_H_ #define _SQLITE3EXT_H_ @@ -69281,7 +69238,6 @@ sqlite3AutoLoadExtensions(sqlite3 * db) ************************************************************************* ** This file contains code used to implement the PRAGMA command. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* Ignore this whole file if pragmas are disabled @@ -70825,7 +70781,6 @@ sqlite3Pragma(Parse * pParse, Token * pId1, /* First part of [database.]id field ** interface, and routines that contribute to loading the database schema ** from disk. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -71754,7 +71709,6 @@ sqlite3_prepare16_v2(sqlite3 * db, /* Database handle. */ ** This file contains C code routines that are called by the parser ** to handle SELECT statements in SQLite. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ @@ -77304,7 +77258,6 @@ sqlite3CodeRowTrigger(Parse * pParse, /* Parse context */ ** This file contains C code routines that are called by the parser ** to handle UPDATE statements. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef SQLITE_OMIT_VIRTUALTABLE @@ -78081,7 +78034,6 @@ updateVirtualTable(Parse * pParse, /* The parsing context */ ** Most of the code in this file may be omitted by defining the ** SQLITE_OMIT_VACUUM macro. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH) @@ -78381,7 +78333,6 @@ sqlite3RunVacuum(char **pzErrMsg, sqlite3 * db) ************************************************************************* ** This file contains code used to help implement virtual tables. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef SQLITE_OMIT_VIRTUALTABLE @@ -79337,7 +79288,6 @@ sqlite3VtabMakeWritable(Parse * pParse, Table * pTab) ** so is applicable. Because this module is responsible for selecting ** indices, you might also think of this module as the "query optimizer". ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -86717,7 +86667,6 @@ sqlite3Parser(void *yyp, /* The parser */ ** individual tokens and sends those tokens one-by-one over to the ** parser for analysis. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -87486,7 +87435,6 @@ sqlite3RunParser(Parse * pParse, const char *zSql, char **pzErrMsg) ** separating it out, the code will be automatically omitted from ** static links that do not use it. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifndef SQLITE_OMIT_COMPLETE @@ -87830,7 +87778,6 @@ sqlite3_complete16(const void *zSql) ** other files are for internal use by SQLite and should not be ** accessed by users of the library. ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifdef SQLITE_ENABLE_FTS3 /************** Include fts3.h in the middle of main.c ***********************/ diff --git a/extensions/createauthonly.c b/extensions/createauthonly.c index faf10e5..87440b9 100644 --- a/extensions/createauthonly.c +++ b/extensions/createauthonly.c @@ -5,7 +5,6 @@ * problems. It will return ERR_NEEDREGGEDNICK on failure. * -- nenolod * - * $Id: createauthonly.c 833 2006-02-15 00:27:59Z jilles $ */ #include "stdinc.h" diff --git a/extensions/createoperonly.c b/extensions/createoperonly.c index 6e06338..0045c89 100644 --- a/extensions/createoperonly.c +++ b/extensions/createoperonly.c @@ -5,7 +5,6 @@ * return ERR_NEEDREGGEDNICK on failure. * -- nenolod * - * $Id: createoperonly.c 3476 2007-05-24 04:28:36Z nenolod $ */ #include "stdinc.h" diff --git a/extensions/example_module.c b/extensions/example_module.c index 8662329..5fcfa17 100644 --- a/extensions/example_module.c +++ b/extensions/example_module.c @@ -16,7 +16,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: example_module.c 3161 2007-01-25 07:23:01Z nenolod $ */ /* List of ircd includes from ../include/ */ diff --git a/extensions/extb_account.c b/extensions/extb_account.c index 69dcda1..2e622fd 100644 --- a/extensions/extb_account.c +++ b/extensions/extb_account.c @@ -2,7 +2,6 @@ * Account extban type: bans all users with any/matching account * -- jilles * - * $Id: extb_account.c 1299 2006-05-11 15:43:03Z jilles $ */ #include "stdinc.h" diff --git a/extensions/extb_canjoin.c b/extensions/extb_canjoin.c index a45c0d3..9f55a76 100644 --- a/extensions/extb_canjoin.c +++ b/extensions/extb_canjoin.c @@ -3,7 +3,6 @@ * specified channel. * -- nenolod/jilles * - * $Id: extb_canjoin.c 1841 2006-08-22 17:30:03Z jilles $ */ #include "stdinc.h" diff --git a/extensions/extb_channel.c b/extensions/extb_channel.c index 9bf09b3..2e657b1 100644 --- a/extensions/extb_channel.c +++ b/extensions/extb_channel.c @@ -2,7 +2,6 @@ * Channel extban type: matches users who are in a certain public channel * -- jilles * - * $Id: extb_channel.c 1723 2006-07-06 15:23:58Z jilles $ */ #include "stdinc.h" diff --git a/extensions/extb_extgecos.c b/extensions/extb_extgecos.c index c3a311f..45cd320 100644 --- a/extensions/extb_extgecos.c +++ b/extensions/extb_extgecos.c @@ -3,7 +3,6 @@ * Requested by Lockwood. * - nenolod * - * $Id: extb_realname.c 1339 2006-05-17 00:45:40Z nenolod $ */ #include "stdinc.h" diff --git a/extensions/extb_oper.c b/extensions/extb_oper.c index ff859aa..5c1f62f 100644 --- a/extensions/extb_oper.c +++ b/extensions/extb_oper.c @@ -2,7 +2,6 @@ * Oper extban type: matches opers * -- jilles * - * $Id: extb_oper.c 1299 2006-05-11 15:43:03Z jilles $ */ #include "stdinc.h" diff --git a/extensions/extb_realname.c b/extensions/extb_realname.c index 9d22109..f01301e 100644 --- a/extensions/extb_realname.c +++ b/extensions/extb_realname.c @@ -2,7 +2,6 @@ * Realname extban type: bans all users with matching gecos * -- jilles * - * $Id: extb_realname.c 1299 2006-05-11 15:43:03Z jilles $ */ #include "stdinc.h" diff --git a/extensions/extb_server.c b/extensions/extb_server.c index b42f41e..cbea7dc 100644 --- a/extensions/extb_server.c +++ b/extensions/extb_server.c @@ -2,7 +2,6 @@ * Server name extban type: bans all users using a certain server * -- jilles * - * $Id: extb_server.c 1299 2006-05-11 15:43:03Z jilles $ */ #include "stdinc.h" diff --git a/extensions/hurt.c b/extensions/hurt.c index 83e0c89..9001d11 100644 --- a/extensions/hurt.c +++ b/extensions/hurt.c @@ -4,7 +4,6 @@ * Copyright (C) 2006 charybdis development team * All rights reserved * - * $Id: hurt.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/ip_cloaking.c b/extensions/ip_cloaking.c index 150a719..1f807ad 100644 --- a/extensions/ip_cloaking.c +++ b/extensions/ip_cloaking.c @@ -1,4 +1,3 @@ -/* $Id: ip_cloaking.c 3526 2007-07-06 07:56:14Z nenolod $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/m_42.c b/extensions/m_42.c index 805e122..35d0d1a 100644 --- a/extensions/m_42.c +++ b/extensions/m_42.c @@ -2,7 +2,6 @@ * Copyright (C) infinity-infinity God * * Bob was here - * $Id: m_42.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/extensions/m_adminwall.c b/extensions/m_adminwall.c index b37734b..04ff744 100644 --- a/extensions/m_adminwall.c +++ b/extensions/m_adminwall.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_wallops.c 20702 2005-08-31 20:59:02Z leeh $ */ #include "stdinc.h" diff --git a/extensions/m_findforwards.c b/extensions/m_findforwards.c index 4afe564..e3d28c4 100644 --- a/extensions/m_findforwards.c +++ b/extensions/m_findforwards.c @@ -17,7 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: m_findforwards.c 986 2006-03-08 00:10:46Z jilles $ */ #include "stdinc.h" #include "channel.h" diff --git a/extensions/m_force.c b/extensions/m_force.c index 4a621f4..4a59e9e 100644 --- a/extensions/m_force.c +++ b/extensions/m_force.c @@ -26,7 +26,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_force.c 3297 2007-03-28 14:49:48Z jilles $ */ #include "stdinc.h" diff --git a/extensions/m_identify.c b/extensions/m_identify.c index c3f1100..35bc48b 100644 --- a/extensions/m_identify.c +++ b/extensions/m_identify.c @@ -28,7 +28,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_identify.c 2729 2006-11-09 23:52:06Z jilles $ */ #include "stdinc.h" diff --git a/extensions/m_mkpasswd.c b/extensions/m_mkpasswd.c index bf5f038..0e8c05d 100644 --- a/extensions/m_mkpasswd.c +++ b/extensions/m_mkpasswd.c @@ -6,7 +6,6 @@ * * You can use this code in any way as long as these names remain. * - * $Id: m_mkpasswd.c 3161 2007-01-25 07:23:01Z nenolod $ */ /* List of ircd includes from ../include/ */ diff --git a/extensions/m_ojoin.c b/extensions/m_ojoin.c index 8c29f6d..a58c083 100644 --- a/extensions/m_ojoin.c +++ b/extensions/m_ojoin.c @@ -16,7 +16,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: m_ojoin.c 3554 2007-08-10 22:31:14Z jilles $ */ #include "stdinc.h" diff --git a/extensions/m_okick.c b/extensions/m_okick.c index f373316..bf1ea2c 100644 --- a/extensions/m_okick.c +++ b/extensions/m_okick.c @@ -20,7 +20,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_okick.c 3554 2007-08-10 22:31:14Z jilles $ */ #include "stdinc.h" diff --git a/extensions/m_olist.c b/extensions/m_olist.c index df15928..65a81da 100644 --- a/extensions/m_olist.c +++ b/extensions/m_olist.c @@ -23,7 +23,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_olist.c 6 2005-09-10 01:02:21Z nenolod $ */ #include "stdinc.h" diff --git a/extensions/m_omode.c b/extensions/m_omode.c index 451b627..c588c53 100644 --- a/extensions/m_omode.c +++ b/extensions/m_omode.c @@ -22,7 +22,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_omode.c 3121 2007-01-02 13:23:04Z jilles $ */ #include "stdinc.h" diff --git a/extensions/m_opme.c b/extensions/m_opme.c index 1435cf8..c60a06a 100644 --- a/extensions/m_opme.c +++ b/extensions/m_opme.c @@ -16,7 +16,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: m_opme.c 3554 2007-08-10 22:31:14Z jilles $ */ #include "stdinc.h" #include "channel.h" diff --git a/extensions/m_webirc.c b/extensions/m_webirc.c index 1ddb634..fa3ad22 100644 --- a/extensions/m_webirc.c +++ b/extensions/m_webirc.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_webirc.c 3458 2007-05-18 19:51:22Z jilles $ */ /* Usage: * auth { diff --git a/extensions/no_oper_invis.c b/extensions/no_oper_invis.c index 4638446..cc94530 100644 --- a/extensions/no_oper_invis.c +++ b/extensions/no_oper_invis.c @@ -3,7 +3,6 @@ * hidden_oper privilege). * -- jilles * - * $Id: no_oper_invis.c 3219 2007-02-24 19:34:28Z jilles $ */ #include "stdinc.h" diff --git a/extensions/sno_farconnect.c b/extensions/sno_farconnect.c index 03877b4..02ce5af 100644 --- a/extensions/sno_farconnect.c +++ b/extensions/sno_farconnect.c @@ -5,7 +5,6 @@ * of all clients. * -- jilles * - * $Id: sno_farconnect.c 1869 2006-08-27 14:24:25Z jilles $ */ #include "stdinc.h" diff --git a/extensions/sno_globalkline.c b/extensions/sno_globalkline.c index a654c48..8fb26e8 100644 --- a/extensions/sno_globalkline.c +++ b/extensions/sno_globalkline.c @@ -6,7 +6,6 @@ * Yes, this is a hack, but it is simple and avoids sending * more data across servers -- jilles * - * $Id: sno_globalkline.c 613 2006-01-29 03:03:02Z nenolod $ */ #include "stdinc.h" diff --git a/extensions/sno_globaloper.c b/extensions/sno_globaloper.c index c0d00d2..1d52b66 100644 --- a/extensions/sno_globaloper.c +++ b/extensions/sno_globaloper.c @@ -1,7 +1,6 @@ /* * Remote oper up notices. * - * $Id: sno_globaloper.c 639 2006-01-29 21:42:06Z jilles $ */ #include "stdinc.h" diff --git a/extensions/sno_whois.c b/extensions/sno_whois.c index cc81942..f1a4346 100644 --- a/extensions/sno_whois.c +++ b/extensions/sno_whois.c @@ -5,7 +5,6 @@ * If #define OPERONLY is removed, then any user can use this snomask * (you need to put ~servnotice in oper_only_umodes for this to work). * - * $Id: sno_whois.c 3498 2007-05-30 10:22:25Z jilles $ */ #include "stdinc.h" diff --git a/extensions/spy_admin_notice.c b/extensions/spy_admin_notice.c index 4171e09..2e07a9c 100644 --- a/extensions/spy_admin_notice.c +++ b/extensions/spy_admin_notice.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: spy_admin_notice.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/spy_info_notice.c b/extensions/spy_info_notice.c index a3df589..148be6e 100644 --- a/extensions/spy_info_notice.c +++ b/extensions/spy_info_notice.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: spy_info_notice.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/spy_links_notice.c b/extensions/spy_links_notice.c index efc39a6..5f138e6 100644 --- a/extensions/spy_links_notice.c +++ b/extensions/spy_links_notice.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: spy_links_notice.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/spy_motd_notice.c b/extensions/spy_motd_notice.c index 3a40955..eb77070 100644 --- a/extensions/spy_motd_notice.c +++ b/extensions/spy_motd_notice.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: spy_motd_notice.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/spy_stats_notice.c b/extensions/spy_stats_notice.c index 240050f..5f942ec 100644 --- a/extensions/spy_stats_notice.c +++ b/extensions/spy_stats_notice.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: spy_stats_notice.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/spy_stats_p_notice.c b/extensions/spy_stats_p_notice.c index 0d0f387..f3fb400 100644 --- a/extensions/spy_stats_p_notice.c +++ b/extensions/spy_stats_p_notice.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: spy_stats_p_notice.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/spy_trace_notice.c b/extensions/spy_trace_notice.c index 31dfe60..01c9e7d 100644 --- a/extensions/spy_trace_notice.c +++ b/extensions/spy_trace_notice.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: spy_trace_notice.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" #include "modules.h" diff --git a/libratbox/src/arc4random.c b/libratbox/src/arc4random.c index dde356e..e508cee 100644 --- a/libratbox/src/arc4random.c +++ b/libratbox/src/arc4random.c @@ -1,4 +1,3 @@ -/* $Id: arc4random.c 26092 2008-09-19 15:13:52Z androsyn $ */ /* $$$: arc4random.c 2005/02/08 robert */ /* $NetBSD: arc4random.c,v 1.5.2.1 2004/03/26 22:52:50 jmc Exp $ */ /* $OpenBSD: arc4random.c,v 1.6 2001/06/05 05:05:38 pvalchev Exp $ */ diff --git a/libratbox/src/balloc.c b/libratbox/src/balloc.c index a147feb..569d6ea 100644 --- a/libratbox/src/balloc.c +++ b/libratbox/src/balloc.c @@ -28,7 +28,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: balloc.c 26100 2008-09-20 01:27:19Z androsyn $ */ /* diff --git a/libratbox/src/commio.c b/libratbox/src/commio.c index cd1f5a0..17066e6 100644 --- a/libratbox/src/commio.c +++ b/libratbox/src/commio.c @@ -21,7 +21,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: commio.c 26254 2008-12-10 04:04:38Z androsyn $ */ #include #include diff --git a/libratbox/src/devpoll.c b/libratbox/src/devpoll.c index 41ac3ed..58770d9 100644 --- a/libratbox/src/devpoll.c +++ b/libratbox/src/devpoll.c @@ -22,7 +22,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: devpoll.c 26254 2008-12-10 04:04:38Z androsyn $ */ #include #include diff --git a/libratbox/src/epoll.c b/libratbox/src/epoll.c index 9409cad..6ec3b18 100644 --- a/libratbox/src/epoll.c +++ b/libratbox/src/epoll.c @@ -23,7 +23,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: epoll.c 26294 2008-12-13 03:01:19Z androsyn $ */ #define _GNU_SOURCE 1 diff --git a/libratbox/src/event.c b/libratbox/src/event.c index 527a8e2..58d5adb 100644 --- a/libratbox/src/event.c +++ b/libratbox/src/event.c @@ -39,7 +39,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: event.c 26272 2008-12-10 05:55:10Z androsyn $ */ #include diff --git a/libratbox/src/gnutls.c b/libratbox/src/gnutls.c index 7d1a879..e1c0d8f 100644 --- a/libratbox/src/gnutls.c +++ b/libratbox/src/gnutls.c @@ -20,7 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: gnutls.c 26296 2008-12-13 03:36:00Z androsyn $ */ #include diff --git a/libratbox/src/helper.c b/libratbox/src/helper.c index a51fa5d..fa12911 100644 --- a/libratbox/src/helper.c +++ b/libratbox/src/helper.c @@ -19,7 +19,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: helper.c 26092 2008-09-19 15:13:52Z androsyn $ */ #include #include diff --git a/libratbox/src/kqueue.c b/libratbox/src/kqueue.c index 08f3666..339c19a 100644 --- a/libratbox/src/kqueue.c +++ b/libratbox/src/kqueue.c @@ -22,7 +22,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: kqueue.c 26092 2008-09-19 15:13:52Z androsyn $ */ #include diff --git a/libratbox/src/linebuf.c b/libratbox/src/linebuf.c index b3d2bb9..f176412 100644 --- a/libratbox/src/linebuf.c +++ b/libratbox/src/linebuf.c @@ -21,7 +21,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: linebuf.c 26092 2008-09-19 15:13:52Z androsyn $ */ #include diff --git a/libratbox/src/nossl.c b/libratbox/src/nossl.c index ee85189..d077c3f 100644 --- a/libratbox/src/nossl.c +++ b/libratbox/src/nossl.c @@ -20,7 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: commio.c 24808 2008-01-02 08:17:05Z androsyn $ */ diff --git a/libratbox/src/openssl.c b/libratbox/src/openssl.c index 86df0b5..1c7c0ec 100644 --- a/libratbox/src/openssl.c +++ b/libratbox/src/openssl.c @@ -20,7 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: commio.c 24808 2008-01-02 08:17:05Z androsyn $ */ #include diff --git a/libratbox/src/patricia.c b/libratbox/src/patricia.c index 33484f8..7cb2346 100644 --- a/libratbox/src/patricia.c +++ b/libratbox/src/patricia.c @@ -4,7 +4,6 @@ * This was then yanked out of the ratbox/devel/src tree and stuffed into * libratbox and had function names changed, but otherwise not really altered. * - * $Id: patricia.c 24244 2007-08-22 19:04:55Z androsyn $ * Dave Plonka * * This product includes software developed by the University of Michigan, diff --git a/libratbox/src/poll.c b/libratbox/src/poll.c index f4b0dcf..6aeb28e 100644 --- a/libratbox/src/poll.c +++ b/libratbox/src/poll.c @@ -22,7 +22,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: poll.c 26092 2008-09-19 15:13:52Z androsyn $ */ #include #include diff --git a/libratbox/src/ports.c b/libratbox/src/ports.c index 607fb8c..9611dd9 100644 --- a/libratbox/src/ports.c +++ b/libratbox/src/ports.c @@ -23,7 +23,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: ports.c 26286 2008-12-10 23:28:53Z androsyn $ */ #include diff --git a/libratbox/src/ratbox_lib.c b/libratbox/src/ratbox_lib.c index c27a08a..3873d78 100644 --- a/libratbox/src/ratbox_lib.c +++ b/libratbox/src/ratbox_lib.c @@ -20,7 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: ratbox_lib.c 26282 2008-12-10 20:33:21Z androsyn $ */ #include diff --git a/libratbox/src/rb_memory.c b/libratbox/src/rb_memory.c index 0322419..e8cc4d0 100644 --- a/libratbox/src/rb_memory.c +++ b/libratbox/src/rb_memory.c @@ -21,7 +21,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: rb_memory.c 26092 2008-09-19 15:13:52Z androsyn $ */ #include #include diff --git a/libratbox/src/select.c b/libratbox/src/select.c index c0b736c..56be72f 100644 --- a/libratbox/src/select.c +++ b/libratbox/src/select.c @@ -22,7 +22,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: select.c 26092 2008-09-19 15:13:52Z androsyn $ */ #define FD_SETSIZE 65535 #include diff --git a/libratbox/src/sigio.c b/libratbox/src/sigio.c index 085b7a4..1afd2cf 100644 --- a/libratbox/src/sigio.c +++ b/libratbox/src/sigio.c @@ -23,7 +23,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: sigio.c 26092 2008-09-19 15:13:52Z androsyn $ */ #ifndef _GNU_SOURCE diff --git a/libratbox/src/snprintf.c b/libratbox/src/snprintf.c index 593fe81..ff0711c 100644 --- a/libratbox/src/snprintf.c +++ b/libratbox/src/snprintf.c @@ -4,7 +4,6 @@ * The original headers are below.. * Note that this implementation does not process floating point numbers so * you will likely need to fall back to using sprintf yourself to do those... - * $Id: snprintf.c 26092 2008-09-19 15:13:52Z androsyn $ */ /* diff --git a/libratbox/src/tools.c b/libratbox/src/tools.c index 77d612f..8c04dcd 100644 --- a/libratbox/src/tools.c +++ b/libratbox/src/tools.c @@ -20,7 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: tools.c 26170 2008-10-26 20:59:07Z androsyn $ * * Here is the original header: * diff --git a/libratbox/src/unix.c b/libratbox/src/unix.c index 5b990c5..397045e 100644 --- a/libratbox/src/unix.c +++ b/libratbox/src/unix.c @@ -21,7 +21,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: unix.c 26180 2008-11-11 00:00:12Z androsyn $ */ #include #include diff --git a/libratbox/src/win32.c b/libratbox/src/win32.c index dd1b9f9..5c5e8ac 100644 --- a/libratbox/src/win32.c +++ b/libratbox/src/win32.c @@ -23,7 +23,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: win32.c 26092 2008-09-19 15:13:52Z androsyn $ */ #include diff --git a/modules/core/m_die.c b/modules/core/m_die.c index 5052121..7d2a058 100644 --- a/modules/core/m_die.c +++ b/modules/core/m_die.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_die.c 3295 2007-03-28 14:45:46Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_error.c b/modules/core/m_error.c index df19a14..07426b5 100644 --- a/modules/core/m_error.c +++ b/modules/core/m_error.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_error.c 494 2006-01-15 16:08:28Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_join.c b/modules/core/m_join.c index a0ce3a9..73c497e 100644 --- a/modules/core/m_join.c +++ b/modules/core/m_join.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_join.c 3494 2007-05-27 13:07:27Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_kick.c b/modules/core/m_kick.c index 3029ca6..012891f 100644 --- a/modules/core/m_kick.c +++ b/modules/core/m_kick.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_kick.c 3317 2007-03-28 23:17:06Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_kill.c b/modules/core/m_kill.c index c78baf5..80df7df 100644 --- a/modules/core/m_kill.c +++ b/modules/core/m_kill.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_kill.c 3408 2007-04-14 20:58:56Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_message.c b/modules/core/m_message.c index df3d97d..6f93117 100644 --- a/modules/core/m_message.c +++ b/modules/core/m_message.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_message.c 3173 2007-01-31 23:57:18Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_mode.c b/modules/core/m_mode.c index 42df7ed..737c1be 100644 --- a/modules/core/m_mode.c +++ b/modules/core/m_mode.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_mode.c 1006 2006-03-09 15:32:14Z nenolod $ */ #include "stdinc.h" diff --git a/modules/core/m_nick.c b/modules/core/m_nick.c index eec78fa..62720c1 100644 --- a/modules/core/m_nick.c +++ b/modules/core/m_nick.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_nick.c 3518 2007-06-22 21:59:09Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_part.c b/modules/core/m_part.c index 09ff236..c69f314 100644 --- a/modules/core/m_part.c +++ b/modules/core/m_part.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_part.c 98 2005-09-11 03:37:47Z nenolod $ */ #include "stdinc.h" diff --git a/modules/core/m_quit.c b/modules/core/m_quit.c index 3851b0d..83b8474 100644 --- a/modules/core/m_quit.c +++ b/modules/core/m_quit.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_quit.c 1333 2006-05-14 13:47:33Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_server.c b/modules/core/m_server.c index fc9a453..c12f948 100644 --- a/modules/core/m_server.c +++ b/modules/core/m_server.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_server.c 3291 2007-03-28 14:30:10Z jilles $ */ #include "stdinc.h" diff --git a/modules/core/m_squit.c b/modules/core/m_squit.c index 587b851..f4fa5f2 100644 --- a/modules/core/m_squit.c +++ b/modules/core/m_squit.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_squit.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_accept.c b/modules/m_accept.c index 07c2227..76a22ab 100644 --- a/modules/m_accept.c +++ b/modules/m_accept.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_accept.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_admin.c b/modules/m_admin.c index 9b0bf8d..e404a6f 100644 --- a/modules/m_admin.c +++ b/modules/m_admin.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_admin.c 3368 2007-04-03 10:11:06Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_away.c b/modules/m_away.c index 1cdd5ed..557371e 100644 --- a/modules/m_away.c +++ b/modules/m_away.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_away.c 3370 2007-04-03 10:15:39Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_cap.c b/modules/m_cap.c index 6e06ef7..acc3515 100644 --- a/modules/m_cap.c +++ b/modules/m_cap.c @@ -27,7 +27,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_cap.c 676 2006-02-03 20:05:09Z gxti $ */ #include "stdinc.h" diff --git a/modules/m_capab.c b/modules/m_capab.c index 227a997..8d078b5 100644 --- a/modules/m_capab.c +++ b/modules/m_capab.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_capab.c 1295 2006-05-08 13:05:25Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_challenge.c b/modules/m_challenge.c index 5b56cfe..73f8e90 100644 --- a/modules/m_challenge.c +++ b/modules/m_challenge.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_challenge.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_close.c b/modules/m_close.c index 19d4e01..681d6cb 100644 --- a/modules/m_close.c +++ b/modules/m_close.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_close.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_cmessage.c b/modules/m_cmessage.c index 10fb40e..adcb20b 100644 --- a/modules/m_cmessage.c +++ b/modules/m_cmessage.c @@ -30,7 +30,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_cmessage.c 1543 2006-06-01 18:18:28Z jilles $ */ #include "stdinc.h" #include "client.h" diff --git a/modules/m_connect.c b/modules/m_connect.c index cf89756..f5a9675 100644 --- a/modules/m_connect.c +++ b/modules/m_connect.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_connect.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_encap.c b/modules/m_encap.c index 66c7d83..2ee95c8 100644 --- a/modules/m_encap.c +++ b/modules/m_encap.c @@ -26,7 +26,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_encap.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_etrace.c b/modules/m_etrace.c index 9441a0e..6fe1013 100644 --- a/modules/m_etrace.c +++ b/modules/m_etrace.c @@ -29,7 +29,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_etrace.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_help.c b/modules/m_help.c index ab94ed0..109e599 100644 --- a/modules/m_help.c +++ b/modules/m_help.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_help.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_info.c b/modules/m_info.c index dbc013a..ca1d626 100644 --- a/modules/m_info.c +++ b/modules/m_info.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_info.c 3396 2007-04-05 00:38:52Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_invite.c b/modules/m_invite.c index 8dd0a73..ed1c53d 100644 --- a/modules/m_invite.c +++ b/modules/m_invite.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_invite.c 3438 2007-05-06 14:46:45Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_ison.c b/modules/m_ison.c index d918b7b..425f99d 100644 --- a/modules/m_ison.c +++ b/modules/m_ison.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_ison.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_knock.c b/modules/m_knock.c index 9c39e35..67d56fb 100644 --- a/modules/m_knock.c +++ b/modules/m_knock.c @@ -20,7 +20,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_knock.c 3570 2007-09-09 19:19:23Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_links.c b/modules/m_links.c index bc28ad8..4998af2 100644 --- a/modules/m_links.c +++ b/modules/m_links.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_links.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_list.c b/modules/m_list.c index ba83d89..ec2656d 100644 --- a/modules/m_list.c +++ b/modules/m_list.c @@ -30,7 +30,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_list.c 3372 2007-04-03 10:18:07Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_locops.c b/modules/m_locops.c index f03cc2b..f774ed8 100644 --- a/modules/m_locops.c +++ b/modules/m_locops.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_locops.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_lusers.c b/modules/m_lusers.c index 1a3bd35..8e963df 100644 --- a/modules/m_lusers.c +++ b/modules/m_lusers.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_lusers.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_map.c b/modules/m_map.c index c2ab6be..7a45140 100644 --- a/modules/m_map.c +++ b/modules/m_map.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_map.c 3368 2007-04-03 10:11:06Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_monitor.c b/modules/m_monitor.c index a6ce575..429f9e2 100644 --- a/modules/m_monitor.c +++ b/modules/m_monitor.c @@ -27,7 +27,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_monitor.c 312 2005-11-07 10:47:33Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_motd.c b/modules/m_motd.c index cb4b171..48d9a6d 100644 --- a/modules/m_motd.c +++ b/modules/m_motd.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_motd.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_names.c b/modules/m_names.c index d01baeb..298b871 100644 --- a/modules/m_names.c +++ b/modules/m_names.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_names.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_oper.c b/modules/m_oper.c index 96794a1..b403b28 100644 --- a/modules/m_oper.c +++ b/modules/m_oper.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_oper.c 1483 2006-05-27 18:58:12Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_operspy.c b/modules/m_operspy.c index 520a25d..b46fa8f 100644 --- a/modules/m_operspy.c +++ b/modules/m_operspy.c @@ -26,7 +26,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_operspy.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_pass.c b/modules/m_pass.c index 0c7636f..73b3c13 100644 --- a/modules/m_pass.c +++ b/modules/m_pass.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_pass.c 3550 2007-08-09 06:47:26Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_ping.c b/modules/m_ping.c index bb5cade..b5e1c83 100644 --- a/modules/m_ping.c +++ b/modules/m_ping.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_ping.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_pong.c b/modules/m_pong.c index 831f2c8..fc8245a 100644 --- a/modules/m_pong.c +++ b/modules/m_pong.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_pong.c 3181 2007-02-01 00:49:07Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_post.c b/modules/m_post.c index e67b133..3c08b30 100644 --- a/modules/m_post.c +++ b/modules/m_post.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_post.c 498 2006-01-15 16:40:33Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_rehash.c b/modules/m_rehash.c index 8557f8c..80333d1 100644 --- a/modules/m_rehash.c +++ b/modules/m_rehash.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_rehash.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_restart.c b/modules/m_restart.c index 2802880..36dbf9c 100644 --- a/modules/m_restart.c +++ b/modules/m_restart.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_restart.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_sasl.c b/modules/m_sasl.c index 41bf823..8cea3e8 100644 --- a/modules/m_sasl.c +++ b/modules/m_sasl.c @@ -26,7 +26,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_sasl.c 1409 2006-05-21 14:46:17Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_scan.c b/modules/m_scan.c index ccc1d02..28154d8 100644 --- a/modules/m_scan.c +++ b/modules/m_scan.c @@ -28,7 +28,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_scan.c 1853 2006-08-24 18:30:52Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_services.c b/modules/m_services.c index c1536e3..5c8468e 100644 --- a/modules/m_services.c +++ b/modules/m_services.c @@ -26,7 +26,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_services.c 1907 2006-08-29 19:18:15Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_set.c b/modules/m_set.c index cc62c96..f803f72 100644 --- a/modules/m_set.c +++ b/modules/m_set.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_set.c 3406 2007-04-13 19:06:53Z jilles $ */ /* rewritten by jdc */ diff --git a/modules/m_signon.c b/modules/m_signon.c index f28021f..efcb84d 100644 --- a/modules/m_signon.c +++ b/modules/m_signon.c @@ -26,7 +26,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_signon.c 1192 2006-04-21 16:21:02Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_snote.c b/modules/m_snote.c index 74f51a7..c3785be 100644 --- a/modules/m_snote.c +++ b/modules/m_snote.c @@ -28,7 +28,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_snote.c 623 2006-01-29 13:47:35Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_stats.c b/modules/m_stats.c index 67e53bb..dc826bc 100644 --- a/modules/m_stats.c +++ b/modules/m_stats.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_stats.c 1608 2006-06-04 02:11:40Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_svinfo.c b/modules/m_svinfo.c index 1adc81d..99047f5 100644 --- a/modules/m_svinfo.c +++ b/modules/m_svinfo.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_svinfo.c 494 2006-01-15 16:08:28Z jilles $ */ #include "stdinc.h" #include "client.h" diff --git a/modules/m_tb.c b/modules/m_tb.c index e02cc57..6b979c5 100644 --- a/modules/m_tb.c +++ b/modules/m_tb.c @@ -27,7 +27,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_tb.c 1349 2006-05-17 17:37:46Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_testline.c b/modules/m_testline.c index 05b7148..b96f878 100644 --- a/modules/m_testline.c +++ b/modules/m_testline.c @@ -27,7 +27,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_testline.c 3303 2007-03-28 15:22:49Z jilles $ */ #include "stdinc.h" #include "send.h" diff --git a/modules/m_testmask.c b/modules/m_testmask.c index 304afab..5a19773 100644 --- a/modules/m_testmask.c +++ b/modules/m_testmask.c @@ -29,7 +29,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: m_testmask.c 3161 2007-01-25 07:23:01Z nenolod $ * */ diff --git a/modules/m_time.c b/modules/m_time.c index 81031dd..944b846 100644 --- a/modules/m_time.c +++ b/modules/m_time.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_time.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_topic.c b/modules/m_topic.c index 6b77805..439e456 100644 --- a/modules/m_topic.c +++ b/modules/m_topic.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_topic.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_trace.c b/modules/m_trace.c index 603922e..e2c0e0b 100644 --- a/modules/m_trace.c +++ b/modules/m_trace.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_trace.c 3183 2007-02-01 01:07:42Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_unreject.c b/modules/m_unreject.c index 21e136a..a6cc126 100644 --- a/modules/m_unreject.c +++ b/modules/m_unreject.c @@ -20,7 +20,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_unreject.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_user.c b/modules/m_user.c index 2f792a7..cf8416e 100644 --- a/modules/m_user.c +++ b/modules/m_user.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_user.c 3416 2007-04-15 20:18:54Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_userhost.c b/modules/m_userhost.c index 108974e..8cae493 100644 --- a/modules/m_userhost.c +++ b/modules/m_userhost.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_userhost.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_users.c b/modules/m_users.c index 80b8b80..fc9a087 100644 --- a/modules/m_users.c +++ b/modules/m_users.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_users.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/modules/m_version.c b/modules/m_version.c index 60d793c..f27633a 100644 --- a/modules/m_version.c +++ b/modules/m_version.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_version.c 1887 2006-08-29 13:42:56Z jilles $ */ #include diff --git a/modules/m_wallops.c b/modules/m_wallops.c index d2c2b28..58a83d8 100644 --- a/modules/m_wallops.c +++ b/modules/m_wallops.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_wallops.c 1377 2006-05-20 13:48:37Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_who.c b/modules/m_who.c index b8ffc87..769beea 100644 --- a/modules/m_who.c +++ b/modules/m_who.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_who.c 3350 2007-04-02 22:03:08Z jilles $ */ #include "stdinc.h" #include "common.h" diff --git a/modules/m_whois.c b/modules/m_whois.c index ed0d799..bc8b36b 100644 --- a/modules/m_whois.c +++ b/modules/m_whois.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_whois.c 3536 2007-07-14 21:50:21Z jilles $ */ #include "stdinc.h" diff --git a/modules/m_whowas.c b/modules/m_whowas.c index 6007361..37861a5 100644 --- a/modules/m_whowas.c +++ b/modules/m_whowas.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: m_whowas.c 1717 2006-07-04 14:41:11Z jilles $ */ #include "stdinc.h" diff --git a/modules/sno_routing.c b/modules/sno_routing.c index f3f7c7a..0698395 100644 --- a/modules/sno_routing.c +++ b/modules/sno_routing.c @@ -28,7 +28,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: sno_routing.c 1172 2006-04-18 13:49:18Z jilles $ */ #include "stdinc.h" diff --git a/src/blacklist.c b/src/blacklist.c index fc355a8..791d4be 100644 --- a/src/blacklist.c +++ b/src/blacklist.c @@ -30,7 +30,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: blacklist.c 2743 2006-11-10 15:15:00Z jilles $ */ #include "stdinc.h" diff --git a/src/cache.c b/src/cache.c index eb4ca6d..04766b7 100644 --- a/src/cache.c +++ b/src/cache.c @@ -29,7 +29,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: cache.c 25119 2008-03-13 16:57:05Z androsyn $ */ #include "stdinc.h" diff --git a/src/channel.c b/src/channel.c index 5826892..39d2f85 100644 --- a/src/channel.c +++ b/src/channel.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: channel.c 3580 2007-11-07 23:45:14Z jilles $ */ #include "stdinc.h" diff --git a/src/chmode.c b/src/chmode.c index c2fd63c..cab5b31 100644 --- a/src/chmode.c +++ b/src/chmode.c @@ -22,7 +22,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: chmode.c 3580 2007-11-07 23:45:14Z jilles $ */ #include "stdinc.h" diff --git a/src/class.c b/src/class.c index 3b55fff..5998158 100644 --- a/src/class.c +++ b/src/class.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: class.c 254 2005-09-21 23:35:12Z nenolod $ */ #include "stdinc.h" diff --git a/src/client.c b/src/client.c index 534bec2..9e8c737 100644 --- a/src/client.c +++ b/src/client.c @@ -22,7 +22,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: client.c 3514 2007-06-06 16:25:21Z nenolod $ */ #include "stdinc.h" #include "config.h" diff --git a/src/extban.c b/src/extban.c index 8890fcc..ca32f08 100644 --- a/src/extban.c +++ b/src/extban.c @@ -19,7 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: extban.c 1389 2006-05-20 19:19:00Z nenolod $ */ #include "stdinc.h" diff --git a/src/getopt.c b/src/getopt.c index aff907e..eb457bd 100644 --- a/src/getopt.c +++ b/src/getopt.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: getopt.c 6 2005-09-10 01:02:21Z nenolod $ */ #include "stdinc.h" diff --git a/src/hash.c b/src/hash.c index 5386856..9cac5bc 100644 --- a/src/hash.c +++ b/src/hash.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: hash.c 3177 2007-02-01 00:19:14Z jilles $ */ #include "stdinc.h" diff --git a/src/hook.c b/src/hook.c index 91b6413..4f5c6ec 100644 --- a/src/hook.c +++ b/src/hook.c @@ -34,7 +34,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: hook.c 712 2006-02-06 04:42:14Z gxti $ */ #include "stdinc.h" #include "hook.h" diff --git a/src/hostmask.c b/src/hostmask.c index 1058df5..7792993 100644 --- a/src/hostmask.c +++ b/src/hostmask.c @@ -22,7 +22,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: hostmask.c 2757 2006-11-10 22:58:15Z jilles $ */ #include "stdinc.h" diff --git a/src/ircd_signal.c b/src/ircd_signal.c index 4ea20aa..f861a38 100644 --- a/src/ircd_signal.c +++ b/src/ircd_signal.c @@ -17,7 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: ircd_signal.c 6 2005-09-10 01:02:21Z nenolod $ */ #include "stdinc.h" diff --git a/src/listener.c b/src/listener.c index 3b8a1fb..d1351f5 100644 --- a/src/listener.c +++ b/src/listener.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: listener.c 3460 2007-05-18 20:31:33Z jilles $ */ #include "stdinc.h" diff --git a/src/logger.c b/src/logger.c index bb3f0a6..b6d3dcc 100644 --- a/src/logger.c +++ b/src/logger.c @@ -31,7 +31,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: s_log.c 3209 2007-02-11 16:54:43Z jilles $ */ #include "stdinc.h" diff --git a/src/match.c b/src/match.c index a0509c4..7ebc0c2 100644 --- a/src/match.c +++ b/src/match.c @@ -16,7 +16,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: match.c 3532 2007-07-14 13:32:18Z jilles $ * */ #include "stdinc.h" diff --git a/src/modules.c b/src/modules.c index 189df07..44db3fb 100644 --- a/src/modules.c +++ b/src/modules.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: modules.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" diff --git a/src/monitor.c b/src/monitor.c index 280ef59..62bf06d 100644 --- a/src/monitor.c +++ b/src/monitor.c @@ -29,7 +29,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: monitor.c 3520 2007-06-30 22:15:35Z jilles $ */ #include "stdinc.h" #include "client.h" diff --git a/src/newconf.c b/src/newconf.c index 477b40a..a48f639 100644 --- a/src/newconf.c +++ b/src/newconf.c @@ -1,5 +1,4 @@ /* This code is in the public domain. - * $Id: newconf.c 3550 2007-08-09 06:47:26Z nenolod $ */ #include "stdinc.h" diff --git a/src/numeric.c b/src/numeric.c index 71b970d..3da23ff 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: numeric.c 6 2005-09-10 01:02:21Z nenolod $ */ #include "stdinc.h" diff --git a/src/operhash.c b/src/operhash.c index ed6cda1..f151cf4 100644 --- a/src/operhash.c +++ b/src/operhash.c @@ -28,7 +28,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: operhash.c 26094 2008-09-19 15:33:46Z androsyn $ */ #include #include "stdinc.h" diff --git a/src/packet.c b/src/packet.c index 6090b7d..707ddbb 100644 --- a/src/packet.c +++ b/src/packet.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: packet.c 3446 2007-05-14 22:21:16Z jilles $ */ #include "stdinc.h" #include "s_conf.h" diff --git a/src/parse.c b/src/parse.c index c4f4c21..18adef8 100644 --- a/src/parse.c +++ b/src/parse.c @@ -22,7 +22,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: parse.c 3177 2007-02-01 00:19:14Z jilles $ */ #include "stdinc.h" diff --git a/src/reject.c b/src/reject.c index 3453c7d..ab9163b 100644 --- a/src/reject.c +++ b/src/reject.c @@ -20,7 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: reject.c 25119 2008-03-13 16:57:05Z androsyn $ */ #include "stdinc.h" diff --git a/src/res.c b/src/res.c index 06585ab..2dac47f 100644 --- a/src/res.c +++ b/src/res.c @@ -7,8 +7,6 @@ * The authors takes no responsibility for any damage or loss * of property which results from the use of this software. * - * $Id: res.c 3301 2007-03-28 15:04:06Z jilles $ - * from Hybrid Id: res.c 459 2006-02-12 22:21:37Z db $ * * July 1999 - Rewrote a bunch of stuff here. Change hostent builder code, * added callbacks and reference counting of returned hostents. diff --git a/src/reslib.c b/src/reslib.c index 38c09eb..25cabe4 100644 --- a/src/reslib.c +++ b/src/reslib.c @@ -92,8 +92,6 @@ #define DNS_LABELTYPE_BITSTRING 0x41 #define DNS_MAXLINE 128 -/* $Id: reslib.c 1695 2006-06-27 15:11:23Z jilles $ */ -/* from Hybrid Id: reslib.c 177 2005-10-22 09:05:05Z michael $ */ struct rb_sockaddr_storage irc_nsaddr_list[IRCD_MAXNS]; int irc_nscount = 0; diff --git a/src/restart.c b/src/restart.c index a44cf08..d3e3a58 100644 --- a/src/restart.c +++ b/src/restart.c @@ -21,7 +21,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * $Id: restart.c 24244 2007-08-22 19:04:55Z androsyn $ */ #include "stdinc.h" diff --git a/src/s_auth.c b/src/s_auth.c index a6143bb..19582ee 100644 --- a/src/s_auth.c +++ b/src/s_auth.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: s_auth.c 3354 2007-04-03 09:21:31Z nenolod $ */ /* * Changes: diff --git a/src/s_conf.c b/src/s_conf.c index 2b3b45a..52e59b8 100644 --- a/src/s_conf.c +++ b/src/s_conf.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: s_conf.c 3550 2007-08-09 06:47:26Z nenolod $ */ #include "stdinc.h" diff --git a/src/s_newconf.c b/src/s_newconf.c index 36e94a5..6114a51 100644 --- a/src/s_newconf.c +++ b/src/s_newconf.c @@ -29,7 +29,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: s_newconf.c 3508 2007-06-04 16:04:49Z jilles $ */ #include "stdinc.h" diff --git a/src/s_serv.c b/src/s_serv.c index 2569d56..e28d48f 100644 --- a/src/s_serv.c +++ b/src/s_serv.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: s_serv.c 3550 2007-08-09 06:47:26Z nenolod $ */ #include "stdinc.h" diff --git a/src/s_user.c b/src/s_user.c index 080e1b4..169b068 100644 --- a/src/s_user.c +++ b/src/s_user.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: s_user.c 3586 2007-11-20 11:16:43Z nenolod $ */ #include "stdinc.h" diff --git a/src/scache.c b/src/scache.c index ff8c9fa..a186ba1 100644 --- a/src/scache.c +++ b/src/scache.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: scache.c 6 2005-09-10 01:02:21Z nenolod $ */ #include "stdinc.h" diff --git a/src/send.c b/src/send.c index db98c57..e82acd9 100644 --- a/src/send.c +++ b/src/send.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: send.c 3520 2007-06-30 22:15:35Z jilles $ */ #include "stdinc.h" diff --git a/src/supported.c b/src/supported.c index 4ed2616..49f0da4 100644 --- a/src/supported.c +++ b/src/supported.c @@ -28,7 +28,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: supported.c 3568 2007-09-09 18:59:08Z jilles $ */ /* From the old supported.h which is diff --git a/src/whowas.c b/src/whowas.c index 9d910a0..03c476a 100644 --- a/src/whowas.c +++ b/src/whowas.c @@ -21,7 +21,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: whowas.c 1717 2006-07-04 14:41:11Z jilles $ */ #include "stdinc.h" diff --git a/tools/convertilines.c b/tools/convertilines.c index eb19a87..53563fd 100644 --- a/tools/convertilines.c +++ b/tools/convertilines.c @@ -25,7 +25,6 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: convertilines.c 6 2005-09-10 01:02:21Z nenolod $ */ #include diff --git a/tools/convertklines.c b/tools/convertklines.c index deb8ff8..bdc9204 100644 --- a/tools/convertklines.c +++ b/tools/convertklines.c @@ -15,7 +15,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: convertklines.c 6 2005-09-10 01:02:21Z nenolod $ */ #include diff --git a/tools/mkpasswd.c b/tools/mkpasswd.c index d553e16..1e891db 100644 --- a/tools/mkpasswd.c +++ b/tools/mkpasswd.c @@ -9,7 +9,6 @@ ** /dev/random for salt generation added by ** Aaron Sethman ** -** $Id: mkpasswd.c 26439 2009-02-01 15:27:24Z jilles $ */ #include #include diff --git a/tools/viconf.c b/tools/viconf.c index d716d51..e18fc35 100644 --- a/tools/viconf.c +++ b/tools/viconf.c @@ -1,7 +1,6 @@ /* * viconf.c * - * $Id: viconf.c 6 2005-09-10 01:02:21Z nenolod $ */ #include #include diff --git a/unsupported/m_clearchan.c b/unsupported/m_clearchan.c index 70c583d..deccf79 100644 --- a/unsupported/m_clearchan.c +++ b/unsupported/m_clearchan.c @@ -17,7 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: m_clearchan.c 3161 2007-01-25 07:23:01Z nenolod $ */ #include "stdinc.h" #include "channel.h" diff --git a/unsupported/sno_channeljoin.c b/unsupported/sno_channeljoin.c index 9a9831f..8c2b35f 100644 --- a/unsupported/sno_channeljoin.c +++ b/unsupported/sno_channeljoin.c @@ -5,7 +5,6 @@ * To be discussed: * + part notices? * - * $Id: sno_channeljoin.c 3478 2007-05-24 15:10:06Z jilles $ */ #include "stdinc.h"