diff --git a/bandb/bandb.c b/bandb/bandb.c index b9ae9fca..2a0f1a04 100644 --- a/bandb/bandb.c +++ b/bandb/bandb.c @@ -26,8 +26,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id: bandb.c 26094 2008-09-19 15:33:46Z androsyn $ */ #include "setup.h" #include diff --git a/bandb/rsdb.h b/bandb/rsdb.h index 52d03afd..5b55d5dd 100644 --- a/bandb/rsdb.h +++ b/bandb/rsdb.h @@ -1,4 +1,3 @@ -/* $Id: rsdb.h 26164 2008-10-26 19:52:43Z androsyn $ */ #ifndef INCLUDED_rsdb_h #define INCLUDED_rsdb_h diff --git a/bandb/rsdb_snprintf.c b/bandb/rsdb_snprintf.c index 74922195..7cf369dd 100644 --- a/bandb/rsdb_snprintf.c +++ b/bandb/rsdb_snprintf.c @@ -5,8 +5,6 @@ * Should you choose to use and/or modify this source code, please * 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 df7e2e57..97eff0e6 100644 --- a/bandb/rsdb_sqlite3.c +++ b/bandb/rsdb_sqlite3.c @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 0e59fd6e..60cbc77f 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 @@ -25484,7 +25462,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 @@ -25855,7 +25832,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 @@ -31891,7 +31867,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 @@ -31911,7 +31886,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 @@ -32914,7 +32888,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. @@ -42591,7 +42564,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 $ */ @@ -47007,7 +46979,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 $ */ /* @@ -52638,7 +52609,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 $ */ @@ -53022,7 +52992,6 @@ sqlite3_blob_bytes(sqlite3_blob * pBlob) ** ************************************************************************* ** -** @(#) $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ #ifdef SQLITE_ENABLE_ATOMIC_WRITE @@ -53310,7 +53279,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 $ */ /* @@ -57404,7 +57372,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 $ */ /* @@ -58099,7 +58066,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 @@ -58576,7 +58542,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 @@ -59184,7 +59149,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 $ */ /* @@ -59455,7 +59419,6 @@ sqlite3AuthContextPop(AuthContext * pContext) ** COMMIT ** ROLLBACK ** -** $Id: sqlite3.c 26106 2008-09-20 03:24:47Z androsyn $ */ /* @@ -63493,7 +63456,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 $ */ @@ -63912,7 +63874,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 $ */ /* @@ -64523,7 +64484,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 $ */ @@ -66211,7 +66171,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 $ */ /* @@ -68136,7 +68095,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 $ */ @@ -68331,7 +68289,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_ @@ -69282,7 +69239,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 @@ -70826,7 +70782,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 $ */ /* @@ -71755,7 +71710,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 $ */ @@ -77305,7 +77259,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 @@ -78082,7 +78035,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) @@ -78382,7 +78334,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 @@ -79338,7 +79289,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 $ */ /* @@ -86718,7 +86668,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 $ */ /* @@ -87487,7 +87436,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 @@ -87831,7 +87779,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 ***********************/ @@ -92166,7 +92113,6 @@ typedef struct QueryTerm * occurs in the query string, the NOT is ignored: * * [one OR -two] ==> one OR two - * */ typedef struct Query { diff --git a/bandb/sqlite3.h b/bandb/sqlite3.h index 855eb2e5..e51c7b9b 100644 --- a/bandb/sqlite3.h +++ b/bandb/sqlite3.h @@ -30,7 +30,6 @@ ** the version number) and changes its name to "sqlite3.h" as ** part of the build process. ** -** @(#) $Id: sqlite3.h 25424 2008-05-20 23:25:54Z androsyn $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ diff --git a/extensions/README b/extensions/README index fd574b32..9803002e 100644 --- a/extensions/README +++ b/extensions/README @@ -1,5 +1,3 @@ -$Id: README 1622 2006-06-04 03:01:05Z beu $ - This directory contains extensions (modules) to charybdis ircd that have been contributed by other people, or written by our development team. Unsupported extensions live under unsupported/. diff --git a/extensions/createauthonly.c b/extensions/createauthonly.c index faf10e57..2526c491 100644 --- a/extensions/createauthonly.c +++ b/extensions/createauthonly.c @@ -4,8 +4,6 @@ * running private chat systems, or if a network gets droneflood * 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 6e063386..e192d062 100644 --- a/extensions/createoperonly.c +++ b/extensions/createoperonly.c @@ -4,8 +4,6 @@ * systems, or if a network gets droneflood problems. It will * 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 d08e9ff9..87ba344b 100644 --- a/extensions/example_module.c +++ b/extensions/example_module.c @@ -15,8 +15,6 @@ * 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: 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 69dcda1f..a3a374a9 100644 --- a/extensions/extb_account.c +++ b/extensions/extb_account.c @@ -1,8 +1,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 3b3c95ba..186b52bb 100644 --- a/extensions/extb_canjoin.c +++ b/extensions/extb_canjoin.c @@ -2,8 +2,6 @@ * Canjoin extban type: matches users who are or are not banned from a * 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 a40a05f4..d669d0a5 100644 --- a/extensions/extb_channel.c +++ b/extensions/extb_channel.c @@ -1,8 +1,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 6060044e..943af37f 100644 --- a/extensions/extb_extgecos.c +++ b/extensions/extb_extgecos.c @@ -2,8 +2,6 @@ * Extended extban type: bans all users with matching nick!user@host#gecos. * 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 da600728..0b257332 100644 --- a/extensions/extb_oper.c +++ b/extensions/extb_oper.c @@ -1,8 +1,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 9d221097..f60a4d5e 100644 --- a/extensions/extb_realname.c +++ b/extensions/extb_realname.c @@ -1,8 +1,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 b42f41e8..1e56c57d 100644 --- a/extensions/extb_server.c +++ b/extensions/extb_server.c @@ -1,8 +1,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 beb2ada2..46b700e6 100644 --- a/extensions/hurt.c +++ b/extensions/hurt.c @@ -3,8 +3,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_3.0.c b/extensions/ip_cloaking_3.0.c index e378a72f..a63be747 100644 --- a/extensions/ip_cloaking_3.0.c +++ b/extensions/ip_cloaking_3.0.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/ip_cloaking_old.c b/extensions/ip_cloaking_old.c index e27db589..c0b25ac8 100644 --- a/extensions/ip_cloaking_old.c +++ b/extensions/ip_cloaking_old.c @@ -1,4 +1,3 @@ -/* $Id: ip_cloaking_old.c 3522 2007-07-06 07:48:28Z nenolod $ */ #include "stdinc.h" #include "modules.h" diff --git a/extensions/m_42.c b/extensions/m_42.c index 59fc5d98..d9a07861 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 53cf0f29..6978a871 100644 --- a/extensions/m_adminwall.c +++ b/extensions/m_adminwall.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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_echotags.c b/extensions/m_echotags.c index dd363d43..e39ed2f1 100644 --- a/extensions/m_echotags.c +++ b/extensions/m_echotags.c @@ -13,7 +13,6 @@ struct Message echotags_msgtab = { mapi_clist_av1 echotags_clist[] = { &echotags_msgtab, NULL }; -DECLARE_MODULE_AV1(echotags, NULL, NULL, echotags_clist, NULL, NULL, "$Id$"); static int m_echotags(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) diff --git a/extensions/m_findforwards.c b/extensions/m_findforwards.c index 36cbb76c..686f7ec6 100644 --- a/extensions/m_findforwards.c +++ b/extensions/m_findforwards.c @@ -16,8 +16,6 @@ * 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: m_findforwards.c 986 2006-03-08 00:10:46Z jilles $ */ #include "stdinc.h" #include "channel.h" diff --git a/extensions/m_identify.c b/extensions/m_identify.c index d2471a29..ba895780 100644 --- a/extensions/m_identify.c +++ b/extensions/m_identify.c @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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_ojoin.c b/extensions/m_ojoin.c index f65fadb1..da940639 100644 --- a/extensions/m_ojoin.c +++ b/extensions/m_ojoin.c @@ -15,8 +15,6 @@ * 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: 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 fd4eba51..a2aab63f 100644 --- a/extensions/m_okick.c +++ b/extensions/m_okick.c @@ -19,8 +19,6 @@ * along with this program; if not, write to the Free Software * 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_omode.c b/extensions/m_omode.c index 3fd9ce52..aed728a2 100644 --- a/extensions/m_omode.c +++ b/extensions/m_omode.c @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * 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 1b0d3a65..1c836214 100644 --- a/extensions/m_opme.c +++ b/extensions/m_opme.c @@ -15,8 +15,6 @@ * 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: m_opme.c 3554 2007-08-10 22:31:14Z jilles $ */ #include "stdinc.h" #include "channel.h" diff --git a/extensions/m_remove.c b/extensions/m_remove.c index b213a12c..e7b3715e 100644 --- a/extensions/m_remove.c +++ b/extensions/m_remove.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/extensions/m_webirc.c b/extensions/m_webirc.c index a11c4d15..5985eec7 100644 --- a/extensions/m_webirc.c +++ b/extensions/m_webirc.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 46384465..98c9cb03 100644 --- a/extensions/no_oper_invis.c +++ b/extensions/no_oper_invis.c @@ -2,8 +2,6 @@ * Deny opers setting themselves +i unless they are bots (i.e. have * 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_channelcreate.c b/extensions/sno_channelcreate.c index facbb813..b39d06c0 100644 --- a/extensions/sno_channelcreate.c +++ b/extensions/sno_channelcreate.c @@ -1,6 +1,5 @@ /* * Channel creation notices - * */ #include "stdinc.h" diff --git a/extensions/sno_farconnect.c b/extensions/sno_farconnect.c index 03877b41..6bb46ecc 100644 --- a/extensions/sno_farconnect.c +++ b/extensions/sno_farconnect.c @@ -4,8 +4,6 @@ * Consequently, it is not possible to use these notices to keep track * 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 a654c488..ca78344d 100644 --- a/extensions/sno_globalkline.c +++ b/extensions/sno_globalkline.c @@ -5,8 +5,6 @@ * and kline_reason is enabled and the same everywhere. * 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 c0d00d2c..9774e68d 100644 --- a/extensions/sno_globaloper.c +++ b/extensions/sno_globaloper.c @@ -1,7 +1,5 @@ /* * 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 2ff5d477..3e6e7203 100644 --- a/extensions/sno_whois.c +++ b/extensions/sno_whois.c @@ -4,8 +4,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 4171e09f..e09f43e0 100644 --- a/extensions/spy_admin_notice.c +++ b/extensions/spy_admin_notice.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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 a3df589a..2c447096 100644 --- a/extensions/spy_info_notice.c +++ b/extensions/spy_info_notice.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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 efc39a6c..c0d7bb3f 100644 --- a/extensions/spy_links_notice.c +++ b/extensions/spy_links_notice.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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 3a40955f..cf41b8b2 100644 --- a/extensions/spy_motd_notice.c +++ b/extensions/spy_motd_notice.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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 240050f2..f104800c 100644 --- a/extensions/spy_stats_notice.c +++ b/extensions/spy_stats_notice.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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 0d0f3879..d31ecb44 100644 --- a/extensions/spy_stats_p_notice.c +++ b/extensions/spy_stats_p_notice.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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 31dfe608..55d654c3 100644 --- a/extensions/spy_trace_notice.c +++ b/extensions/spy_trace_notice.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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/include/blacklist.h b/include/blacklist.h index 8eb5fc71..652f12b4 100644 --- a/include/blacklist.h +++ b/include/blacklist.h @@ -18,7 +18,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * */ #ifndef _BLACKLIST_H_ diff --git a/include/cache.h b/include/cache.h index d5396d39..33c75bbc 100644 --- a/include/cache.h +++ b/include/cache.h @@ -1,4 +1,3 @@ -/* $Id: cache.h 24250 2007-08-22 19:15:08Z androsyn $ */ #ifndef INCLUDED_CACHE_H #define INCLUDED_CACHE_H diff --git a/include/channel.h b/include/channel.h index 7f6a1886..496d8e25 100644 --- a/include/channel.h +++ b/include/channel.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: channel.h 3580 2007-11-07 23:45:14Z jilles $ */ #ifndef INCLUDED_channel_h diff --git a/include/chmode.h b/include/chmode.h index ba79ca0d..54010dad 100644 --- a/include/chmode.h +++ b/include/chmode.h @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id$ */ #ifndef INCLUDED_chmode_h diff --git a/include/class.h b/include/class.h index c076c185..9a1ab251 100644 --- a/include/class.h +++ b/include/class.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: class.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_class_h diff --git a/include/client.h b/include/client.h index b81a9c6a..5e69e89d 100644 --- a/include/client.h +++ b/include/client.h @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: client.h 3446 2007-05-14 22:21:16Z jilles $ */ #ifndef INCLUDED_client_h diff --git a/include/common.h b/include/common.h index 228bab44..e8838009 100644 --- a/include/common.h +++ b/include/common.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: common.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_common_h diff --git a/include/config.h b/include/config.h index 96a6fc77..44e64300 100644 --- a/include/config.h +++ b/include/config.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: config.h 3354 2007-04-03 09:21:31Z nenolod $ */ #ifndef INCLUDED_config_h diff --git a/include/defaults.h b/include/defaults.h index 839a6c32..0ec3d6a4 100644 --- a/include/defaults.h +++ b/include/defaults.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: defaults.h 3354 2007-04-03 09:21:31Z nenolod $ */ #ifndef INCLUDED_defaults_h diff --git a/include/hash.h b/include/hash.h index 55340e46..a2bb56bd 100644 --- a/include/hash.h +++ b/include/hash.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: hash.h 3177 2007-02-01 00:19:14Z jilles $ */ #ifndef INCLUDED_hash_h diff --git a/include/hook.h b/include/hook.h index f7a6e231..0198ae7b 100644 --- a/include/hook.h +++ b/include/hook.h @@ -1,8 +1,6 @@ /* * Copyright (C) 2004-2005 Lee Hardy * Copyright (C) 2004-2005 ircd-ratbox development team - * - * $Id: hook.h 906 2006-02-21 02:25:43Z nenolod $ */ #ifndef INCLUDED_HOOK_H #define INCLUDED_HOOK_H diff --git a/include/hostmask.h b/include/hostmask.h index b05df58f..43dadc0a 100644 --- a/include/hostmask.h +++ b/include/hostmask.h @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: hostmask.h 2757 2006-11-10 22:58:15Z jilles $ */ #ifndef INCLUDE_hostmask_h diff --git a/include/ipv4_from_ipv6.h b/include/ipv4_from_ipv6.h index f6a881f9..1bfbe653 100644 --- a/include/ipv4_from_ipv6.h +++ b/include/ipv4_from_ipv6.h @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #ifndef _IPV4_FROM_IPV6_H_ diff --git a/include/ircd.h b/include/ircd.h index c3fa25db..57f7c4bc 100644 --- a/include/ircd.h +++ b/include/ircd.h @@ -20,8 +20,6 @@ * 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.h 1851 2006-08-24 17:16:53Z jilles $ */ #ifndef INCLUDED_ircd_h diff --git a/include/ircd_defs.h b/include/ircd_defs.h index 6816f977..a8ef286e 100644 --- a/include/ircd_defs.h +++ b/include/ircd_defs.h @@ -21,14 +21,11 @@ * 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_defs.h 3512 2007-06-06 16:20:40Z nenolod $ */ /* * NOTE: NICKLEN and TOPICLEN do not live here anymore. Set it with configure * Otherwise there are no user servicable part here. - * */ /* ircd_defs.h - Global size definitions for record entries used diff --git a/include/ircd_getopt.h b/include/ircd_getopt.h index ddc9e4da..763cb489 100644 --- a/include/ircd_getopt.h +++ b/include/ircd_getopt.h @@ -20,8 +20,6 @@ * 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_getopt.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef __GETOPT_H_INCLUDED__ diff --git a/include/ircd_linker.h b/include/ircd_linker.h index feb651ef..7d40b513 100644 --- a/include/ircd_linker.h +++ b/include/ircd_linker.h @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id: ircd_linker.h 863 2006-02-16 06:51:59Z nenolod $ */ #ifndef _CHARYBDIS_IRCD_LINKER_H diff --git a/include/ircd_signal.h b/include/ircd_signal.h index ddff2bc7..56911cf0 100644 --- a/include/ircd_signal.h +++ b/include/ircd_signal.h @@ -20,8 +20,6 @@ * 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_signal.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_ircd_signal_h diff --git a/include/listener.h b/include/listener.h index bf6915b6..f4e679b9 100644 --- a/include/listener.h +++ b/include/listener.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: listener.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_listener_h diff --git a/include/logger.h b/include/logger.h index c7f7a6e5..2d9d37fd 100644 --- a/include/logger.h +++ b/include/logger.h @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id: s_log.h 1481 2006-05-27 17:24:05Z nenolod $ */ #ifndef INCLUDED_s_log_h diff --git a/include/m_info.h b/include/m_info.h index 46f2f077..61602960 100644 --- a/include/m_info.h +++ b/include/m_info.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: m_info.h 3356 2007-04-03 09:31:11Z nenolod $ */ #ifndef INCLUDED_m_info_h diff --git a/include/match.h b/include/match.h index 9b6fb882..7fe1e5fb 100644 --- a/include/match.h +++ b/include/match.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: irc_string.h 3538 2007-07-26 14:21:57Z jilles $ */ #ifndef INCLUDED_match_h diff --git a/include/messages.h b/include/messages.h index d54c81be..4f983d0b 100644 --- a/include/messages.h +++ b/include/messages.h @@ -15,8 +15,6 @@ * 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: messages.tab 3548 2007-08-09 06:40:52Z nenolod $ */ #ifndef INCLUDED_messages_h diff --git a/include/modules.h b/include/modules.h index 8250e1be..9c8da718 100644 --- a/include/modules.h +++ b/include/modules.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: modules.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_modules_h diff --git a/include/monitor.h b/include/monitor.h index 0e711b40..0e70653c 100644 --- a/include/monitor.h +++ b/include/monitor.h @@ -4,8 +4,6 @@ * * Copyright (C) 2005 Lee Hardy * Copyright (C) 2005 ircd-ratbox development team - * - * $Id: monitor.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_monitor_h #define INCLUDED_monitor_h diff --git a/include/msg.h b/include/msg.h index 24c25409..8a6944c1 100644 --- a/include/msg.h +++ b/include/msg.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: msg.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_msg_h diff --git a/include/newconf.h b/include/newconf.h index 57eb6add..fda64c64 100644 --- a/include/newconf.h +++ b/include/newconf.h @@ -1,6 +1,5 @@ /* This code is in the public domain. * $Nightmare: nightmare/include/config.h,v 1.32.2.2.2.2 2002/07/02 03:41:28 ejb Exp $ - * $Id: newconf.h 1735 2006-07-19 02:35:40Z nenolod $ */ #ifndef _NEWCONF_H_INCLUDED diff --git a/include/numeric.h b/include/numeric.h index 7f55249d..56d86b28 100644 --- a/include/numeric.h +++ b/include/numeric.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: numeric.h 1793 2006-08-04 19:56:03Z jilles $ */ #ifndef INCLUDED_numeric_h diff --git a/include/packet.h b/include/packet.h index c456b839..8c74b2c2 100644 --- a/include/packet.h +++ b/include/packet.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: packet.h 813 2006-02-14 20:52:15Z nenolod $ */ #ifndef INCLUDED_packet_h diff --git a/include/parse.h b/include/parse.h index b50e9bcf..df89982b 100644 --- a/include/parse.h +++ b/include/parse.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: parse.h 944 2006-03-06 03:41:31Z nenolod $ */ #ifndef INCLUDED_parse_h_h diff --git a/include/patchlevel.h b/include/patchlevel.h index aff17972..49701c91 100644 --- a/include/patchlevel.h +++ b/include/patchlevel.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: patchlevel.h 34 2005-09-10 02:53:04Z nenolod $ */ #include "setup.h" diff --git a/include/reject.h b/include/reject.h index 98cefa94..6fabb2cb 100644 --- a/include/reject.h +++ b/include/reject.h @@ -20,8 +20,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA * - * - * $Id: reject.h 25056 2008-02-06 20:47:40Z androsyn $ */ #ifndef INCLUDED_reject_h #define INCLUDED_reject_h diff --git a/include/restart.h b/include/restart.h index b088eff6..344456e8 100644 --- a/include/restart.h +++ b/include/restart.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: restart.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_restart_h diff --git a/include/s_auth.h b/include/s_auth.h index 3c4ad40d..bbc20b7f 100644 --- a/include/s_auth.h +++ b/include/s_auth.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: s_auth.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_s_auth_h diff --git a/include/s_conf.h b/include/s_conf.h index 3d9a65e4..0bcd76c3 100644 --- a/include/s_conf.h +++ b/include/s_conf.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: s_conf.h 3550 2007-08-09 06:47:26Z nenolod $ */ #ifndef INCLUDED_s_conf_h diff --git a/include/s_newconf.h b/include/s_newconf.h index 4fc639cc..55b3ec36 100644 --- a/include/s_newconf.h +++ b/include/s_newconf.h @@ -28,8 +28,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id: s_newconf.h 1747 2006-07-25 21:22:45Z jilles $ */ #ifndef INCLUDED_s_newconf_h diff --git a/include/s_serv.h b/include/s_serv.h index 4f697dba..b8608e6d 100644 --- a/include/s_serv.h +++ b/include/s_serv.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: s_serv.h 1863 2006-08-27 13:40:37Z jilles $ */ #ifndef INCLUDED_serv_h diff --git a/include/s_stats.h b/include/s_stats.h index 4e88a505..47889d7f 100644 --- a/include/s_stats.h +++ b/include/s_stats.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: s_stats.h 1409 2006-05-21 14:46:17Z jilles $ */ #ifndef INCLUDED_s_stats_h diff --git a/include/s_user.h b/include/s_user.h index 38fa7669..0f5c3665 100644 --- a/include/s_user.h +++ b/include/s_user.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: s_user.h 3201 2007-02-04 01:59:38Z jilles $ */ #ifndef INCLUDED_s_user_h diff --git a/include/scache.h b/include/scache.h index eec241c4..240c22c8 100644 --- a/include/scache.h +++ b/include/scache.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: scache.h 6 2005-09-10 01:02:21Z nenolod $ */ #ifndef INCLUDED_scache_h diff --git a/include/send.h b/include/send.h index 08a33626..eaf1eb1e 100644 --- a/include/send.h +++ b/include/send.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: send.h 3520 2007-06-30 22:15:35Z jilles $ */ #ifndef INCLUDED_send_h diff --git a/include/snomask.h b/include/snomask.h index a4d12a6d..2044ffce 100644 --- a/include/snomask.h +++ b/include/snomask.h @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #ifndef SNOMASK_H diff --git a/include/sslproc.h b/include/sslproc.h index dbc66d53..d3832f2b 100644 --- a/include/sslproc.h +++ b/include/sslproc.h @@ -17,8 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA - * - * $Id: sslproc.h 25179 2008-03-30 16:34:57Z androsyn $ */ #ifndef INCLUDED_sslproc_h diff --git a/include/stdinc.h b/include/stdinc.h index 950a5bcc..166d44d7 100644 --- a/include/stdinc.h +++ b/include/stdinc.h @@ -19,8 +19,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: stdinc.h 6 2005-09-10 01:02:21Z nenolod $ - * */ #include "ratbox_lib.h" diff --git a/include/substitution.h b/include/substitution.h index 408649cc..1242d580 100644 --- a/include/substitution.h +++ b/include/substitution.h @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #include "stdinc.h" diff --git a/include/supported.h b/include/supported.h index 63f09bc0..506955a7 100644 --- a/include/supported.h +++ b/include/supported.h @@ -28,8 +28,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id: supported.h 1887 2006-08-29 13:42:56Z jilles $ */ #ifndef INCLUDED_supported_h diff --git a/include/whowas.h b/include/whowas.h index 9d75d1cd..9d050ab0 100644 --- a/include/whowas.h +++ b/include/whowas.h @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id: whowas.h 1717 2006-07-04 14:41:11Z jilles $ */ #ifndef INCLUDED_whowas_h #define INCLUDED_whowas_h diff --git a/ircd/bandbi.c b/ircd/bandbi.c index 8a2aa97c..69898903 100644 --- a/ircd/bandbi.c +++ b/ircd/bandbi.c @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #include "stdinc.h" #include "ratbox_lib.h" diff --git a/ircd/blacklist.c b/ircd/blacklist.c index a5317104..9ca513af 100644 --- a/ircd/blacklist.c +++ b/ircd/blacklist.c @@ -29,7 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * */ #include "stdinc.h" diff --git a/ircd/cache.c b/ircd/cache.c index 43ffdb4d..0702596b 100644 --- a/ircd/cache.c +++ b/ircd/cache.c @@ -28,8 +28,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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/ircd/channel.c b/ircd/channel.c index f2836ba5..35a9afb6 100644 --- a/ircd/channel.c +++ b/ircd/channel.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/chmode.c b/ircd/chmode.c index 47d8034f..99afb90d 100644 --- a/ircd/chmode.c +++ b/ircd/chmode.c @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/class.c b/ircd/class.c index a7eb528a..580b9fc3 100644 --- a/ircd/class.c +++ b/ircd/class.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/client.c b/ircd/client.c index 963c89b9..e2b4ca18 100644 --- a/ircd/client.c +++ b/ircd/client.c @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -1073,7 +1071,7 @@ free_exited_clients(void *unused) ** already been sent. we make sure to exit a server's dependent clients ** and servers before the server itself; exit_one_client takes care of ** actually removing things off llists. tweaked from +CSr31 -orabidoo -*/ + */ /* * added sanity test code.... source_p->serv might be NULL... */ @@ -1126,7 +1124,7 @@ recurse_remove_clients(struct Client *source_p, const char *comment) ** Remove *everything* that depends on source_p, from all lists, and sending ** all necessary SQUITs. source_p itself is still on the lists, ** and its SQUITs have been sent except for the upstream one -orabidoo -*/ + */ static void remove_dependents(struct Client *client_p, struct Client *source_p, @@ -1193,7 +1191,6 @@ exit_aborted_clients(void *unused) /* * dead_link - Adds client to a list of clients that need an exit_client() - * */ void dead_link(struct Client *client_p, int sendqex) @@ -1544,7 +1541,7 @@ exit_local_client(struct Client *client_p, struct Client *source_p, struct Clien ** ** CLIENT_EXITED if (client_p == source_p) ** 0 if (client_p != source_p) -*/ + */ int exit_client(struct Client *client_p, /* The local client originating the * exit or NULL, if this exit is diff --git a/ircd/extban.c b/ircd/extban.c index 8890fcca..40c6dd7d 100644 --- a/ircd/extban.c +++ b/ircd/extban.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/getopt.c b/ircd/getopt.c index aff907e6..9e28ea2f 100644 --- a/ircd/getopt.c +++ b/ircd/getopt.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/hash.c b/ircd/hash.c index 7658536d..396b00c6 100644 --- a/ircd/hash.c +++ b/ircd/hash.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/hook.c b/ircd/hook.c index e1e72cd6..dfb7a1f9 100644 --- a/ircd/hook.c +++ b/ircd/hook.c @@ -33,8 +33,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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/ircd/hostmask.c b/ircd/hostmask.c index 3c7da5f5..5fcbe3fe 100644 --- a/ircd/hostmask.c +++ b/ircd/hostmask.c @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/ipv4_from_ipv6.c b/ircd/ipv4_from_ipv6.c index 421977f1..b2dee9bf 100644 --- a/ircd/ipv4_from_ipv6.c +++ b/ircd/ipv4_from_ipv6.c @@ -29,7 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * */ #include "stdinc.h" diff --git a/ircd/ircd.c b/ircd/ircd.c index 668e9120..73c52351 100644 --- a/ircd/ircd.c +++ b/ircd/ircd.c @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id$ */ #include "ratbox_lib.h" diff --git a/ircd/ircd_lexer.c b/ircd/ircd_lexer.c index c2678372..23a8c135 100644 --- a/ircd/ircd_lexer.c +++ b/ircd/ircd_lexer.c @@ -513,8 +513,6 @@ char *yytext; * 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_lexer.l 3540 2007-07-30 17:26:00Z jilles $ */ #line 26 "ircd_lexer.l" #include diff --git a/ircd/ircd_lexer.l b/ircd/ircd_lexer.l index 9691c839..43b79f68 100644 --- a/ircd/ircd_lexer.l +++ b/ircd/ircd_lexer.l @@ -15,7 +15,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA * - * $Id: ircd_lexer.l 3540 2007-07-30 17:26:00Z jilles $ */ %option case-insensitive diff --git a/ircd/ircd_parser.y b/ircd/ircd_parser.y index 8987a77d..e51ba50e 100644 --- a/ircd/ircd_parser.y +++ b/ircd/ircd_parser.y @@ -1,6 +1,5 @@ /* This code is in the public domain. * $Nightmare: nightmare/src/main/parser.y,v 1.2.2.1.2.1 2002/07/02 03:42:10 ejb Exp $ - * $Id: ircd_parser.y 871 2006-02-18 21:56:00Z nenolod $ */ %{ diff --git a/ircd/ircd_signal.c b/ircd/ircd_signal.c index 37a042d6..0cae2c36 100644 --- a/ircd/ircd_signal.c +++ b/ircd/ircd_signal.c @@ -16,8 +16,6 @@ * 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: ircd_signal.c 6 2005-09-10 01:02:21Z nenolod $ */ #include "stdinc.h" diff --git a/ircd/listener.c b/ircd/listener.c index 7da77b7f..5fbfa3f7 100644 --- a/ircd/listener.c +++ b/ircd/listener.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/logger.c b/ircd/logger.c index da895440..c4de984c 100644 --- a/ircd/logger.c +++ b/ircd/logger.c @@ -30,8 +30,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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/ircd/match.c b/ircd/match.c index 1c0a59ae..63a025ea 100644 --- a/ircd/match.c +++ b/ircd/match.c @@ -16,8 +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" #include "config.h" diff --git a/ircd/modules.c b/ircd/modules.c index 5887a014..c13f4f1a 100644 --- a/ircd/modules.c +++ b/ircd/modules.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/monitor.c b/ircd/monitor.c index bab371ed..edd004f4 100644 --- a/ircd/monitor.c +++ b/ircd/monitor.c @@ -28,8 +28,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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/ircd/newconf.c b/ircd/newconf.c index d73f0432..3094be8e 100644 --- a/ircd/newconf.c +++ b/ircd/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/ircd/packet.c b/ircd/packet.c index bb0fdcf0..2e838453 100644 --- a/ircd/packet.c +++ b/ircd/packet.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/parse.c b/ircd/parse.c index 6691edb0..1289baa1 100644 --- a/ircd/parse.c +++ b/ircd/parse.c @@ -21,8 +21,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -288,7 +286,6 @@ handle_encap(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *so * output - NONE * side effects - MUST MUST be called at startup ONCE before * any other keyword hash routine is used. - * */ void clear_hash_parse() diff --git a/ircd/reject.c b/ircd/reject.c index f5f547c9..90f4f1e8 100644 --- a/ircd/reject.c +++ b/ircd/reject.c @@ -19,8 +19,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/restart.c b/ircd/restart.c index 9cb81255..499b291d 100644 --- a/ircd/restart.c +++ b/ircd/restart.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/s_auth.c b/ircd/s_auth.c index d0bde66c..c87c7aa5 100644 --- a/ircd/s_auth.c +++ b/ircd/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: @@ -584,7 +583,6 @@ read_auth_reply(rb_fde_t *F, void *data) /* * delete_auth_queries() - * */ void delete_auth_queries(struct Client *target_p) diff --git a/ircd/s_conf.c b/ircd/s_conf.c index 03776789..c596e59a 100644 --- a/ircd/s_conf.c +++ b/ircd/s_conf.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/s_newconf.c b/ircd/s_newconf.c index 7231d13e..4eb34f57 100644 --- a/ircd/s_newconf.c +++ b/ircd/s_newconf.c @@ -28,8 +28,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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/ircd/s_serv.c b/ircd/s_serv.c index 58e086a4..6395aab8 100644 --- a/ircd/s_serv.c +++ b/ircd/s_serv.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -438,7 +436,6 @@ check_server(const char *name, struct Client *client_p) * - int flag of capabilities that this server has * output - NONE * side effects - send the CAPAB line to a server -orabidoo - * */ void send_capabilities(struct Client *client_p, unsigned int cap_can_send) diff --git a/ircd/s_user.c b/ircd/s_user.c index 2f65e2af..cb86c0b4 100644 --- a/ircd/s_user.c +++ b/ircd/s_user.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -216,7 +214,7 @@ show_lusers(struct Client *source_p) ** would just issue "KILL foobar" to clean out dups. But, ** this is not fair. It should actually request another ** nick from local user or kill him/her... -*/ + */ int register_local_user(struct Client *client_p, struct Client *source_p) diff --git a/ircd/send.c b/ircd/send.c index 9f3a2542..6eec553a 100644 --- a/ircd/send.c +++ b/ircd/send.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/ircd/snomask.c b/ircd/snomask.c index a96f48c0..d3986c2b 100644 --- a/ircd/snomask.c +++ b/ircd/snomask.c @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #include "stdinc.h" diff --git a/ircd/sslproc.c b/ircd/sslproc.c index 0ce5617b..44846150 100644 --- a/ircd/sslproc.c +++ b/ircd/sslproc.c @@ -17,8 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA - * - * $Id$ */ #include diff --git a/ircd/substitution.c b/ircd/substitution.c index 3ed06e82..eb27288d 100644 --- a/ircd/substitution.c +++ b/ircd/substitution.c @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #include "stdinc.h" diff --git a/ircd/supported.c b/ircd/supported.c index 2f83df53..94ebf3a2 100644 --- a/ircd/supported.c +++ b/ircd/supported.c @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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/ircd/version.c.SH b/ircd/version.c.SH index 4788589c..d5e76206 100644 --- a/ircd/version.c.SH +++ b/ircd/version.c.SH @@ -1,7 +1,5 @@ #!/bin/sh -# $Id: version.c.SH 3342 2007-04-01 22:10:05Z jilles $ - spitshell=cat package=IRC diff --git a/modules/core/m_die.c b/modules/core/m_die.c index b76ee8f3..722b24ea 100644 --- a/modules/core/m_die.c +++ b/modules/core/m_die.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 23e6f082..213d892a 100644 --- a/modules/core/m_error.c +++ b/modules/core/m_error.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 20273f04..8e27de0b 100644 --- a/modules/core/m_join.c +++ b/modules/core/m_join.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 bc4a580a..50030dd0 100644 --- a/modules/core/m_kick.c +++ b/modules/core/m_kick.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 59464540..577c8115 100644 --- a/modules/core/m_kill.c +++ b/modules/core/m_kill.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 eb48fdb0..c5faeb41 100644 --- a/modules/core/m_message.c +++ b/modules/core/m_message.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -246,7 +244,6 @@ m_message(enum message_type msgtype, struct MsgBuf *msgbuf_p, * all the classic old bizzare oper privmsg tricks * are parsed and sent as is, if prefixed with $ * to disambiguate. - * */ static int diff --git a/modules/core/m_mode.c b/modules/core/m_mode.c index bdeb0de7..6633d252 100644 --- a/modules/core/m_mode.c +++ b/modules/core/m_mode.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 eaf9fb86..faa70aa2 100644 --- a/modules/core/m_nick.c +++ b/modules/core/m_nick.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 95e3e66f..faadda43 100644 --- a/modules/core/m_part.c +++ b/modules/core/m_part.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 03ee2759..01def830 100644 --- a/modules/core/m_quit.c +++ b/modules/core/m_quit.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 ce91a455..f3ad0434 100644 --- a/modules/core/m_server.c +++ b/modules/core/m_server.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 5fd18364..6c6da052 100644 --- a/modules/core/m_squit.c +++ b/modules/core/m_squit.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 a69ba274..f1f0b4c1 100644 --- a/modules/m_accept.c +++ b/modules/m_accept.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 c58d08a5..9d01d9b9 100644 --- a/modules/m_admin.c +++ b/modules/m_admin.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 f99655fe..a36dafbc 100644 --- a/modules/m_away.c +++ b/modules/m_away.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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_capab.c b/modules/m_capab.c index f6a225a1..c2b49609 100644 --- a/modules/m_capab.c +++ b/modules/m_capab.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -51,7 +49,6 @@ DECLARE_MODULE_AV1(capab, NULL, NULL, capab_clist, NULL, NULL, "$Revision: 1295 /* * mr_capab - CAPAB message handler * parv[1] = space-separated list of capabilities - * */ static int mr_capab(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) diff --git a/modules/m_challenge.c b/modules/m_challenge.c index ec27fe0f..311b0fb7 100644 --- a/modules/m_challenge.c +++ b/modules/m_challenge.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -101,7 +99,6 @@ cleanup_challenge(struct Client *target_p) /* * m_challenge - generate RSA challenge for wouldbe oper * parv[1] = operator to challenge for, or +response - * */ static int m_challenge(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) diff --git a/modules/m_close.c b/modules/m_close.c index ba0facdb..decfc6eb 100644 --- a/modules/m_close.c +++ b/modules/m_close.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 6ca411da..4b405148 100644 --- a/modules/m_cmessage.c +++ b/modules/m_cmessage.c @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 8d31597a..9171fc31 100644 --- a/modules/m_connect.c +++ b/modules/m_connect.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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_dline.c b/modules/m_dline.c index 59e0f88a..7cf5434f 100644 --- a/modules/m_dline.c +++ b/modules/m_dline.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id$ */ #include "stdinc.h" diff --git a/modules/m_encap.c b/modules/m_encap.c index b6cdef7d..434c28c7 100644 --- a/modules/m_encap.c +++ b/modules/m_encap.c @@ -25,8 +25,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 3821cecd..1af6b4de 100644 --- a/modules/m_etrace.c +++ b/modules/m_etrace.c @@ -28,8 +28,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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_grant.c b/modules/m_grant.c index 95635234..4198530e 100644 --- a/modules/m_grant.c +++ b/modules/m_grant.c @@ -1,8 +1,6 @@ /* * Copyright (C) 2006 Jilles Tjoelker * Copyright (C) 2006 Stephen Bennett - * - * $Id$ */ #include "stdinc.h" diff --git a/modules/m_help.c b/modules/m_help.c index 64085748..96dbd53f 100644 --- a/modules/m_help.c +++ b/modules/m_help.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 ddf8807b..66095d21 100644 --- a/modules/m_info.c +++ b/modules/m_info.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 7ecc7bf0..3b7f4825 100644 --- a/modules/m_invite.c +++ b/modules/m_invite.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 c3c38d35..0645a7b2 100644 --- a/modules/m_ison.c +++ b/modules/m_ison.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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_kline.c b/modules/m_kline.c index d11b59a9..b43efe8b 100644 --- a/modules/m_kline.c +++ b/modules/m_kline.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id$ */ #include "stdinc.h" diff --git a/modules/m_knock.c b/modules/m_knock.c index 86d32515..ef6bf97b 100644 --- a/modules/m_knock.c +++ b/modules/m_knock.c @@ -19,8 +19,6 @@ * along with this program; if not, write to the Free Software * 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 3893e402..a4a4ef06 100644 --- a/modules/m_links.c +++ b/modules/m_links.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 caf8d33d..7251fd8d 100644 --- a/modules/m_list.c +++ b/modules/m_list.c @@ -29,8 +29,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 7df9e2ef..c9bda46a 100644 --- a/modules/m_locops.c +++ b/modules/m_locops.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 f7d59367..ae03e10d 100644 --- a/modules/m_lusers.c +++ b/modules/m_lusers.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 2f8c7ad2..ba2bd442 100644 --- a/modules/m_map.c +++ b/modules/m_map.c @@ -18,8 +18,6 @@ * along with this program; if not, write to the Free Software * 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 ae26035b..2c215d09 100644 --- a/modules/m_monitor.c +++ b/modules/m_monitor.c @@ -26,8 +26,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 ffe27f3f..47cfd4d7 100644 --- a/modules/m_motd.c +++ b/modules/m_motd.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 ad23284a..1b31d9b8 100644 --- a/modules/m_names.c +++ b/modules/m_names.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 cf256b6e..724ebf6b 100644 --- a/modules/m_oper.c +++ b/modules/m_oper.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 c5147572..8f9cbe0b 100644 --- a/modules/m_operspy.c +++ b/modules/m_operspy.c @@ -25,8 +25,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 44043301..7f8037d2 100644 --- a/modules/m_pass.c +++ b/modules/m_pass.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 dd266ca9..6d3bac07 100644 --- a/modules/m_ping.c +++ b/modules/m_ping.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 de8b494c..6630a831 100644 --- a/modules/m_pong.c +++ b/modules/m_pong.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 31b1e39a..98aa6e4a 100644 --- a/modules/m_post.c +++ b/modules/m_post.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 3caef467..603739d3 100644 --- a/modules/m_rehash.c +++ b/modules/m_rehash.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 7f3721e7..9def4d7d 100644 --- a/modules/m_restart.c +++ b/modules/m_restart.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -54,7 +52,6 @@ DECLARE_MODULE_AV1(restart, NULL, NULL, restart_clist, NULL, NULL, "$Revision: 3 /* * mo_restart - * */ static int mo_restart(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) diff --git a/modules/m_resv.c b/modules/m_resv.c index 519c35cd..7bc31644 100644 --- a/modules/m_resv.c +++ b/modules/m_resv.c @@ -19,8 +19,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA - * - * $Id$ */ #include "stdinc.h" diff --git a/modules/m_sasl.c b/modules/m_sasl.c index f94ddacd..514497f8 100644 --- a/modules/m_sasl.c +++ b/modules/m_sasl.c @@ -25,8 +25,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 25cbd538..ea730603 100644 --- a/modules/m_scan.c +++ b/modules/m_scan.c @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 a2720146..ba7f692d 100644 --- a/modules/m_services.c +++ b/modules/m_services.c @@ -25,8 +25,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 8e3b8820..ffae83fc 100644 --- a/modules/m_set.c +++ b/modules/m_set.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 4b4d8307..003655c4 100644 --- a/modules/m_signon.c +++ b/modules/m_signon.c @@ -25,8 +25,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 b8f7d739..e5320fcc 100644 --- a/modules/m_snote.c +++ b/modules/m_snote.c @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 77e41873..f099b884 100644 --- a/modules/m_stats.c +++ b/modules/m_stats.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 abd4b9bb..98e50cca 100644 --- a/modules/m_svinfo.c +++ b/modules/m_svinfo.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 18a5e8bc..50b8c696 100644 --- a/modules/m_tb.c +++ b/modules/m_tb.c @@ -26,8 +26,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 891d4486..d2285338 100644 --- a/modules/m_testline.c +++ b/modules/m_testline.c @@ -26,8 +26,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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 52804f35..81ce62e2 100644 --- a/modules/m_testmask.c +++ b/modules/m_testmask.c @@ -29,8 +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 $ - * */ /* List of ircd includes from ../include/ */ diff --git a/modules/m_time.c b/modules/m_time.c index 40729f4b..547efb2e 100644 --- a/modules/m_time.c +++ b/modules/m_time.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 6ab83765..106c689f 100644 --- a/modules/m_topic.c +++ b/modules/m_topic.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 d8a66fba..b6aea27c 100644 --- a/modules/m_trace.c +++ b/modules/m_trace.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 66146b71..475a83c9 100644 --- a/modules/m_unreject.c +++ b/modules/m_unreject.c @@ -19,8 +19,6 @@ * along with this program; if not, write to the Free Software * 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" @@ -44,7 +42,6 @@ DECLARE_MODULE_AV1(unreject, NULL, NULL, unreject_clist, NULL, NULL, "$Revision: /* * mo_unreject - * */ static int mo_unreject(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) diff --git a/modules/m_user.c b/modules/m_user.c index 060f0815..982621ae 100644 --- a/modules/m_user.c +++ b/modules/m_user.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 cbda1b33..9eb63ead 100644 --- a/modules/m_userhost.c +++ b/modules/m_userhost.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 c50678fb..3cb718f3 100644 --- a/modules/m_users.c +++ b/modules/m_users.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 0462d6b6..667bfe16 100644 --- a/modules/m_version.c +++ b/modules/m_version.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 db0f9b39..60ddba02 100644 --- a/modules/m_wallops.c +++ b/modules/m_wallops.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 d24cf461..95895c14 100644 --- a/modules/m_who.c +++ b/modules/m_who.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 6499d1f6..904efd45 100644 --- a/modules/m_whois.c +++ b/modules/m_whois.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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 82354994..929334bb 100644 --- a/modules/m_whowas.c +++ b/modules/m_whowas.c @@ -20,8 +20,6 @@ * along with this program; if not, write to the Free Software * 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/m_xline.c b/modules/m_xline.c index b3650ed2..50423715 100644 --- a/modules/m_xline.c +++ b/modules/m_xline.c @@ -26,8 +26,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * $Id$ */ #include "stdinc.h" diff --git a/modules/sno_routing.c b/modules/sno_routing.c index f3f7c7ad..1eb01cbf 100644 --- a/modules/sno_routing.c +++ b/modules/sno_routing.c @@ -27,8 +27,6 @@ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING * 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/modules/static_modules.c.SH b/modules/static_modules.c.SH index ab4fe2bc..424af6a8 100644 --- a/modules/static_modules.c.SH +++ b/modules/static_modules.c.SH @@ -1,6 +1,5 @@ #!/bin/sh # static_modules.c.SH: Generates our static module list -# $Id: static_modules.c.SH 6 2005-09-10 01:02:21Z nenolod $ # SYMS=`for x in $*; do basename $x .o|sed -es/^m_//; done` cat > static_modules.c <