From 65900684722e5fbe53da792223ac57db29ad1d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robbert=20M=C3=BCller?= Date: Mon, 2 Dec 2024 18:30:54 +0100 Subject: [PATCH 1/3] Remove unused rcsid paramenters --- common/bsd.c | 4 ---- common/dbuf.c | 4 ---- common/irc_sprintf.c | 4 ---- common/match.c | 4 ---- common/packet.c | 4 ---- common/parse.c | 4 ---- common/send.c | 4 ---- common/support.c | 4 ---- contrib/mod_passwd/mod_passwd.c | 4 ---- iauth/a_conf.c | 4 ---- iauth/a_io.c | 4 ---- iauth/a_log.c | 4 ---- iauth/iauth.c | 4 ---- iauth/mod_dnsbl.c | 4 ---- iauth/mod_lhex.c | 4 ---- iauth/mod_pipe.c | 4 ---- iauth/mod_rfc931.c | 4 ---- iauth/mod_socks.c | 4 ---- iauth/mod_webproxy.c | 4 ---- ircd/channel.c | 4 ---- ircd/chkconf.c | 4 ---- ircd/class.c | 4 ---- ircd/hash.c | 3 --- ircd/ircd.c | 4 ---- ircd/list.c | 4 ---- ircd/res.c | 4 ---- ircd/res_comp.c | 5 ----- ircd/res_init.c | 5 ----- ircd/res_mkquery.c | 5 ----- ircd/s_auth.c | 4 ---- ircd/s_bsd.c | 4 ---- ircd/s_conf.c | 4 ---- ircd/s_debug.c | 4 ---- ircd/s_err.c | 4 ---- ircd/s_id.c | 4 ---- ircd/s_misc.c | 4 ---- ircd/s_numeric.c | 4 ---- ircd/s_send.c | 4 ---- ircd/s_serv.c | 4 ---- ircd/s_service.c | 4 ---- ircd/s_user.c | 4 ---- ircd/s_zip.c | 4 ---- ircd/version.c.SH.in | 4 ---- ircd/whowas.c | 4 ---- 44 files changed, 178 deletions(-) diff --git a/common/bsd.c b/common/bsd.c index e0c9c893..fe27af45 100644 --- a/common/bsd.c +++ b/common/bsd.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: bsd.c,v 1.13 2005/12/27 02:23:48 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define BSD_C diff --git a/common/dbuf.c b/common/dbuf.c index 31386fa2..8df7895d 100644 --- a/common/dbuf.c +++ b/common/dbuf.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: dbuf.c,v 1.12 2004/10/01 20:22:12 chopin Exp $"; -#endif - /* ** For documentation of the *global* functions implemented here, ** see the header file (dbuf.h). diff --git a/common/irc_sprintf.c b/common/irc_sprintf.c index dfebeb26..5607e1ef 100644 --- a/common/irc_sprintf.c +++ b/common/irc_sprintf.c @@ -6,10 +6,6 @@ * */ -#ifndef lint -static const volatile char rcsid[] = "$Id: irc_sprintf.c,v 1.5 2004/10/01 20:22:12 chopin Exp $"; -#endif - #define IRC_SPRINTF_C #include "irc_sprintf_ext.h" #undef IRC_SPRINTF_C diff --git a/common/match.c b/common/match.c index 2f154f06..a720ad23 100644 --- a/common/match.c +++ b/common/match.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: match.c,v 1.16 2005/02/04 18:40:06 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define MATCH_C diff --git a/common/packet.c b/common/packet.c index f3f2545f..afcba437 100644 --- a/common/packet.c +++ b/common/packet.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: packet.c,v 1.13 2004/10/01 20:22:12 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define PACKET_C diff --git a/common/parse.c b/common/parse.c index 6847c2ee..db1c0f7d 100644 --- a/common/parse.c +++ b/common/parse.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: parse.c,v 1.97 2010/08/12 16:29:30 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define PARSE_C diff --git a/common/send.c b/common/send.c index 3823075c..36f8eb76 100644 --- a/common/send.c +++ b/common/send.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: send.c,v 1.108 2008/06/08 17:17:10 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define SEND_C diff --git a/common/support.c b/common/support.c index 6a84f801..20d3be8e 100644 --- a/common/support.c +++ b/common/support.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: support.c,v 1.46 2009/03/15 01:25:32 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define SUPPORT_C diff --git a/contrib/mod_passwd/mod_passwd.c b/contrib/mod_passwd/mod_passwd.c index ad7e6683..6f077974 100644 --- a/contrib/mod_passwd/mod_passwd.c +++ b/contrib/mod_passwd/mod_passwd.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: mod_passwd.c,v 1.3 2004/10/01 20:22:13 chopin Exp $"; -#endif - #include "os.h" #include "a_defines.h" #include "a_externs.h" diff --git a/iauth/a_conf.c b/iauth/a_conf.c index bea0fb0a..c4ce761c 100644 --- a/iauth/a_conf.c +++ b/iauth/a_conf.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: a_conf.c,v 1.39 2004/11/13 16:46:18 chopin Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define A_CONF_C diff --git a/iauth/a_io.c b/iauth/a_io.c index ed58e170..b2f9effa 100644 --- a/iauth/a_io.c +++ b/iauth/a_io.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: a_io.c,v 1.31 2005/01/03 17:33:55 q Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define A_IO_C diff --git a/iauth/a_log.c b/iauth/a_log.c index a0b8baf5..50ee01dd 100644 --- a/iauth/a_log.c +++ b/iauth/a_log.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: a_log.c,v 1.11 2004/10/01 20:22:13 chopin Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define A_LOG_C diff --git a/iauth/iauth.c b/iauth/iauth.c index 9f0194e3..50020be2 100644 --- a/iauth/iauth.c +++ b/iauth/iauth.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: iauth.c,v 1.18 2005/01/03 22:16:59 q Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define IAUTH_C diff --git a/iauth/mod_dnsbl.c b/iauth/mod_dnsbl.c index f8ad5d5c..839a4391 100644 --- a/iauth/mod_dnsbl.c +++ b/iauth/mod_dnsbl.c @@ -19,10 +19,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: mod_dnsbl.c,v 1.1 2024/10/1 15:35:00 patrick Exp $"; -#endif - // clang-format off // "os.h" must be included before "a_defines.h" #include "os.h" diff --git a/iauth/mod_lhex.c b/iauth/mod_lhex.c index 0c954bc8..61633645 100644 --- a/iauth/mod_lhex.c +++ b/iauth/mod_lhex.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id mod_lhex.c,v 1.12 1999/02/06 21:43:52 kalt Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define MOD_LHEX_C diff --git a/iauth/mod_pipe.c b/iauth/mod_pipe.c index 3664ad09..7677c557 100644 --- a/iauth/mod_pipe.c +++ b/iauth/mod_pipe.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: mod_pipe.c,v 1.8 2006/08/08 08:42:15 chopin Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define MOD_PIPE_C diff --git a/iauth/mod_rfc931.c b/iauth/mod_rfc931.c index 0c36b71d..d5c47872 100644 --- a/iauth/mod_rfc931.c +++ b/iauth/mod_rfc931.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: mod_rfc931.c,v 1.20 2004/10/01 20:22:13 chopin Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define MOD_RFC931_C diff --git a/iauth/mod_socks.c b/iauth/mod_socks.c index 97006fa9..37ff08d5 100644 --- a/iauth/mod_socks.c +++ b/iauth/mod_socks.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: mod_socks.c,v 1.43 2004/10/03 17:13:42 chopin Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define MOD_SOCKS_C diff --git a/iauth/mod_webproxy.c b/iauth/mod_webproxy.c index cbb982ab..a0f8536b 100644 --- a/iauth/mod_webproxy.c +++ b/iauth/mod_webproxy.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: mod_webproxy.c,v 1.4 2005/01/27 19:17:44 chopin Exp $"; -#endif - #include "os.h" #include "a_defines.h" #define MOD_PROXY_C diff --git a/ircd/channel.c b/ircd/channel.c index 1ac07137..a84a17c5 100644 --- a/ircd/channel.c +++ b/ircd/channel.c @@ -31,10 +31,6 @@ * Moved is_full() from list.c */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: channel.c,v 1.279 2010/08/12 16:23:14 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define CHANNEL_C diff --git a/ircd/chkconf.c b/ircd/chkconf.c index 69cac2dc..58607eca 100644 --- a/ircd/chkconf.c +++ b/ircd/chkconf.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: chkconf.c,v 1.52 2009/04/29 22:05:08 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define CHKCONF_C diff --git a/ircd/class.c b/ircd/class.c index e19b2175..fdb9bae1 100644 --- a/ircd/class.c +++ b/ircd/class.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: class.c,v 1.28 2008/06/22 16:09:07 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define CLASS_C diff --git a/ircd/hash.c b/ircd/hash.c index 7e417e64..9899787e 100644 --- a/ircd/hash.c +++ b/ircd/hash.c @@ -16,9 +16,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: hash.c,v 1.57 2008/06/15 00:57:37 chopin Exp $"; -#endif #include "os.h" #include "s_defines.h" diff --git a/ircd/ircd.c b/ircd/ircd.c index 482cc282..dfb15d60 100644 --- a/ircd/ircd.c +++ b/ircd/ircd.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: ircd.c,v 1.165 2010/08/11 17:39:00 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define IRCD_C diff --git a/ircd/list.c b/ircd/list.c index eff83228..14a9b007 100644 --- a/ircd/list.c +++ b/ircd/list.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: list.c,v 1.47 2009/03/15 01:11:19 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define LIST_C diff --git a/ircd/res.c b/ircd/res.c index 6b039136..575c3e00 100644 --- a/ircd/res.c +++ b/ircd/res.c @@ -23,10 +23,6 @@ #include "s_externs.h" #undef RES_C -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: res.c,v 1.53 2009/03/15 01:01:04 chopin Exp $"; -#endif - /* because there is a lot of debug code in here :-) */ /* #undef DEBUG */ diff --git a/ircd/res_comp.c b/ircd/res_comp.c index b58d06c9..50a322d3 100644 --- a/ircd/res_comp.c +++ b/ircd/res_comp.c @@ -53,11 +53,6 @@ * --Copyright-- */ -#if defined(LIBC_SCCS) && !defined(lint) -static const volatile char sccsid[] = "@(#)res_comp.c 8.1 (Berkeley) 6/4/93"; -static const volatile char rcsid[] = "$Id: res_comp.c,v 1.10 2004/10/01 20:22:14 chopin Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "os.h" #include "s_defines.h" #define RES_COMP_C diff --git a/ircd/res_init.c b/ircd/res_init.c index eb3c1ed1..299c2983 100644 --- a/ircd/res_init.c +++ b/ircd/res_init.c @@ -53,11 +53,6 @@ * --Copyright-- */ -#if defined(LIBC_SCCS) && !defined(lint) -static const volatile char sccsid[] = "@(#)res_init.c 8.1 (Berkeley) 6/7/93"; -static const volatile char rcsid[] = "$Id: res_init.c,v 1.16 2005/01/03 22:17:00 q Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "os.h" #include "s_defines.h" #define RES_INIT_C diff --git a/ircd/res_mkquery.c b/ircd/res_mkquery.c index fcf802ed..d796b59f 100644 --- a/ircd/res_mkquery.c +++ b/ircd/res_mkquery.c @@ -53,11 +53,6 @@ * --Copyright-- */ -#if defined(LIBC_SCCS) && !defined(lint) -static const volatile char sccsid[] = "@(#)res_mkquery.c 8.1 (Berkeley) 6/4/93"; -static const volatile char rcsid[] = "$Id: res_mkquery.c,v 1.8 2004/10/01 20:22:14 chopin Exp $"; -#endif /* LIBC_SCCS and not lint */ - #include "os.h" #include "s_defines.h" #define RES_MKQUERY_C diff --git a/ircd/s_auth.c b/ircd/s_auth.c index 08b0ca13..2af42106 100644 --- a/ircd/s_auth.c +++ b/ircd/s_auth.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_auth.c,v 1.55 2007/12/15 23:21:12 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_AUTH_C diff --git a/ircd/s_bsd.c b/ircd/s_bsd.c index 2d488b40..e3d6e306 100644 --- a/ircd/s_bsd.c +++ b/ircd/s_bsd.c @@ -34,10 +34,6 @@ * Added SO_REUSEADDR fix from zessel@informatik.uni-kl.de */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_bsd.c,v 1.188 2011/01/20 14:26:56 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_BSD_C diff --git a/ircd/s_conf.c b/ircd/s_conf.c index 6c1c75c6..65db5d4f 100644 --- a/ircd/s_conf.c +++ b/ircd/s_conf.c @@ -47,10 +47,6 @@ * Added close() into configuration file (was forgotten...) */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_conf.c,v 1.195 2010/08/11 17:16:51 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_CONF_C diff --git a/ircd/s_debug.c b/ircd/s_debug.c index 824b2342..9994c084 100644 --- a/ircd/s_debug.c +++ b/ircd/s_debug.c @@ -18,10 +18,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_debug.c,v 1.56 2009/11/13 20:25:55 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_DEBUG_C diff --git a/ircd/s_err.c b/ircd/s_err.c index 596d75c6..ca8f44f1 100644 --- a/ircd/s_err.c +++ b/ircd/s_err.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_err.c,v 1.71 2010/08/12 16:24:31 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_ERR_C diff --git a/ircd/s_id.c b/ircd/s_id.c index ae732692..caae12b5 100644 --- a/ircd/s_id.c +++ b/ircd/s_id.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_id.c,v 1.29 2005/02/08 02:47:11 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_ID_C diff --git a/ircd/s_misc.c b/ircd/s_misc.c index d933f538..3284f6e0 100644 --- a/ircd/s_misc.c +++ b/ircd/s_misc.c @@ -21,10 +21,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_misc.c,v 1.121 2011/01/20 14:26:56 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_MISC_C diff --git a/ircd/s_numeric.c b/ircd/s_numeric.c index 47da85a2..2d2648e8 100644 --- a/ircd/s_numeric.c +++ b/ircd/s_numeric.c @@ -19,10 +19,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_numeric.c,v 1.8 2005/01/30 17:56:31 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_NUMERIC_C diff --git a/ircd/s_send.c b/ircd/s_send.c index 7c311c02..fac80945 100644 --- a/ircd/s_send.c +++ b/ircd/s_send.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_send.c,v 1.11 2007/12/16 06:10:13 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_SEND_C diff --git a/ircd/s_serv.c b/ircd/s_serv.c index 6588e9b0..92a5ad8a 100644 --- a/ircd/s_serv.c +++ b/ircd/s_serv.c @@ -21,10 +21,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_serv.c,v 1.299 2011/01/20 14:26:56 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_SERV_C diff --git a/ircd/s_service.c b/ircd/s_service.c index 36afcc83..29f06130 100644 --- a/ircd/s_service.c +++ b/ircd/s_service.c @@ -21,10 +21,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_service.c,v 1.69 2010/08/12 01:08:02 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_SERVICE_C diff --git a/ircd/s_user.c b/ircd/s_user.c index 546b137d..89466d29 100644 --- a/ircd/s_user.c +++ b/ircd/s_user.c @@ -21,10 +21,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_user.c,v 1.280 2010/08/12 16:29:30 bif Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_USER_C diff --git a/ircd/s_zip.c b/ircd/s_zip.c index 53b188c9..561de34c 100644 --- a/ircd/s_zip.c +++ b/ircd/s_zip.c @@ -17,10 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef lint -static const volatile char rcsid[] = "@(#)$Id: s_zip.c,v 1.12 2005/02/20 23:09:45 chopin Exp $"; -#endif - #include "os.h" #include "s_defines.h" #define S_ZIP_C diff --git a/ircd/version.c.SH.in b/ircd/version.c.SH.in index 280319ed..c1f761b6 100644 --- a/ircd/version.c.SH.in +++ b/ircd/version.c.SH.in @@ -52,10 +52,6 @@ cat >version.c < Date: Mon, 2 Dec 2024 18:33:53 +0100 Subject: [PATCH 2/3] Remove rcsid in ircdwatch it is only used for marking a version from the code, it doesnt have a purpose, and git will not use this --- contrib/ircdwatch/ircdwatch.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/contrib/ircdwatch/ircdwatch.c b/contrib/ircdwatch/ircdwatch.c index 863710d8..aed8cd96 100644 --- a/contrib/ircdwatch/ircdwatch.c +++ b/contrib/ircdwatch/ircdwatch.c @@ -17,8 +17,6 @@ * */ -static const volatile char rcsid[] = "@(#)$Id: ircdwatch.c,v 1.10 2004/10/02 01:20:43 chopin Exp $"; - #include #include /* atol() */ #include /* fork() exec() */ @@ -476,8 +474,7 @@ Usage:\n\ --kill, stop both ircdwatch and ircd\n\ --rest, stop ircdwatch but let ircd alone\n\ --help, display this text\n\ -\n\ -%s\n", rcsid); +\n"); } int From 069ae6849d7b40a099b63172baa7661de7558de2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robbert=20M=C3=BCller?= Date: Mon, 2 Dec 2024 18:50:06 +0100 Subject: [PATCH 3/3] Remove more rvs id markers used with rvs/cvs and svn --- common/irc_sprintf_body.c | 1 - common/irc_sprintf_ext.h | 1 - common/struct_def.h | 1 - contrib/mkpasswd/Makefile | 1 - contrib/mkpasswd/mkpasswd.c | 2 -- doc/INSTALL.info | 1 - doc/INSTALL.txt | 1 - doc/Makefile | 2 -- doc/README | 2 -- doc/m4macros | 2 -- ircd/buildm4 | 2 -- ircd/config_read.c | 2 -- ircd/fileio.c | 2 -- ircd/fileio.h | 2 -- ircd/nameser_def.h | 1 - ircd/patricia.c | 2 -- ircd/res_def.h | 2 -- ircd/resolv_def.h | 1 - ircd/sys_def.h | 2 -- support/Makefile.in | 2 -- support/mkdirhier | 2 -- support/sums.in | 1 - 22 files changed, 35 deletions(-) diff --git a/common/irc_sprintf_body.c b/common/irc_sprintf_body.c index b27ab108..a90debe2 100644 --- a/common/irc_sprintf_body.c +++ b/common/irc_sprintf_body.c @@ -1,4 +1,3 @@ -/* $Id: irc_sprintf_body.c,v 1.2 2003/07/18 16:24:25 chopin Exp $ */ { #ifndef IRC_SPRINTF_V va_list ap; diff --git a/common/irc_sprintf_ext.h b/common/irc_sprintf_ext.h index d3ed00a2..f3630844 100644 --- a/common/irc_sprintf_ext.h +++ b/common/irc_sprintf_ext.h @@ -5,7 +5,6 @@ /* This file contains external definitions for global variables and functions defined in common/irc_sprintf.c. - $Id: irc_sprintf_ext.h,v 1.5 2003/07/18 16:24:25 chopin Exp $ */ /* External definitions for global functions. diff --git a/common/struct_def.h b/common/struct_def.h index 1bbec47f..0696f849 100644 --- a/common/struct_def.h +++ b/common/struct_def.h @@ -17,7 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: struct_def.h,v 1.152 2011/01/20 14:26:56 bif Exp $ */ typedef struct ConfItem aConfItem; diff --git a/contrib/mkpasswd/Makefile b/contrib/mkpasswd/Makefile index 89d2d0a6..20d62926 100644 --- a/contrib/mkpasswd/Makefile +++ b/contrib/mkpasswd/Makefile @@ -1,5 +1,4 @@ # Makefile for the mkpasswd -# CVS $Id: Makefile,v 1.2 2001/10/20 17:57:23 q Exp $ CC=gcc CFLAGS = -O2 -Wall diff --git a/contrib/mkpasswd/mkpasswd.c b/contrib/mkpasswd/mkpasswd.c index 163d79cc..a84bf2a4 100644 --- a/contrib/mkpasswd/mkpasswd.c +++ b/contrib/mkpasswd/mkpasswd.c @@ -8,8 +8,6 @@ ** ** /dev/random for salt generation added by ** Aaron Sethman -** -** $Id: mkpasswd.c,v 1.7 2005/01/03 22:16:59 q Exp $ */ #include #include diff --git a/doc/INSTALL.info b/doc/INSTALL.info index 068b7194..86854445 100644 --- a/doc/INSTALL.info +++ b/doc/INSTALL.info @@ -10,7 +10,6 @@ Installing IRC - The Internet Relay Chat Program ************************************************ SGML version by Christophe Kalt, updated by Piotr Kucharski - $Id: INSTALL.info,v 1.87 2010/08/11 17:36:56 bif Exp $ This document describes how to install, and configure IRC 2.11 diff --git a/doc/INSTALL.txt b/doc/INSTALL.txt index 83eae42e..16517b42 100644 --- a/doc/INSTALL.txt +++ b/doc/INSTALL.txt @@ -1,6 +1,5 @@ Installing IRC - The Internet Relay Chat Program SGML version by Christophe Kalt, updated by Piotr Kucharski - $Id: INSTALL.txt,v 1.87 2010/08/11 17:36:56 bif Exp $ This document describes how to install, and configure IRC 2.11 diff --git a/doc/Makefile b/doc/Makefile index 20b82e40..87305367 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -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: Makefile,v 1.3 1997/08/08 14:44:13 kalt Exp $ -#* #*/ MANDIR=/usr/local/man diff --git a/doc/README b/doc/README index 023dcdb3..a3eb5b49 100644 --- a/doc/README +++ b/doc/README @@ -1,5 +1,3 @@ -# @(#)$Id: README,v 1.9 2004/12/21 01:14:08 chopin Exp $ - This directory contains the documentation related to this package. diff --git a/doc/m4macros b/doc/m4macros index 861f3ad6..025fb566 100644 --- a/doc/m4macros +++ b/doc/m4macros @@ -1,5 +1,3 @@ -# @(#)$Id: m4macros,v 1.3 2002/05/19 22:45:47 jv Exp $ - The following macros are included in "ircd.m4" for use with the m4 text preprocessor. "ircd.m4" is parsed before the IRC server conf file so they are all available for use with that. diff --git a/ircd/buildm4 b/ircd/buildm4 index 9ef0554f..7fa9fa3b 100755 --- a/ircd/buildm4 +++ b/ircd/buildm4 @@ -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: buildm4,v 1.12 2002/05/19 22:46:42 jv Exp $ -# # # If only this was a perl script...*sigh* diff --git a/ircd/config_read.c b/ircd/config_read.c index 72763429..d04b30c7 100644 --- a/ircd/config_read.c +++ b/ircd/config_read.c @@ -1,5 +1,3 @@ -/* "@(#)$Id: config_read.c,v 1.33 2005/05/13 17:39:12 chopin Exp $"; */ - /* used in config_error() */ #define CF_NONE 0 #define CF_WARN 1 diff --git a/ircd/fileio.c b/ircd/fileio.c index 7a9297f3..63a0b38a 100644 --- a/ircd/fileio.c +++ b/ircd/fileio.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: fileio.c,v 1.1 2005/02/15 19:16:09 chopin Exp $ */ #include "fileio.h" #define s_assert(x) diff --git a/ircd/fileio.h b/ircd/fileio.h index d5aa636c..7ee6ad12 100644 --- a/ircd/fileio.h +++ b/ircd/fileio.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: fileio.h,v 1.1 2005/02/15 19:16:09 chopin Exp $ */ #ifndef INCLUDED_fileio_h diff --git a/ircd/nameser_def.h b/ircd/nameser_def.h index a76ed55a..f63b2ba8 100644 --- a/ircd/nameser_def.h +++ b/ircd/nameser_def.h @@ -77,7 +77,6 @@ /* * @(#)nameser.h 8.1 (Berkeley) 6/2/93 - * $Id: nameser_def.h,v 1.5 2005/01/03 17:33:55 q Exp $ */ /* diff --git a/ircd/patricia.c b/ircd/patricia.c index 5e4c258e..fff5fd5b 100644 --- a/ircd/patricia.c +++ b/ircd/patricia.c @@ -13,8 +13,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * - * $Id: patricia.c,v 1.4 2009/03/15 00:20:43 chopin Exp $ - * * Imported from ratbox with minor function name changes. * Id: patricia.c,v 7.14 2003/06/12 13:46:26 androsyn Exp * diff --git a/ircd/res_def.h b/ircd/res_def.h index 00689ea6..45882ef1 100644 --- a/ircd/res_def.h +++ b/ircd/res_def.h @@ -1,6 +1,4 @@ /* - * $Id: res_def.h,v 1.7 2008/06/24 00:12:56 chopin Exp $ - * * ircd/res_def.h (C)opyright 1992 Darren Reed. */ diff --git a/ircd/resolv_def.h b/ircd/resolv_def.h index 578ba49a..3ddc9cde 100644 --- a/ircd/resolv_def.h +++ b/ircd/resolv_def.h @@ -55,7 +55,6 @@ /* * @(#)resolv.h 8.1 (Berkeley) 6/2/93 - * $Id: resolv_def.h,v 1.8 2004/03/15 18:19:54 chopin Exp $ */ /* diff --git a/ircd/sys_def.h b/ircd/sys_def.h index f5ec711d..59f50bf5 100644 --- a/ircd/sys_def.h +++ b/ircd/sys_def.h @@ -17,8 +17,6 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: sys_def.h,v 1.3 2001/10/20 17:57:30 q Exp $ */ - #if defined(DEBUGMODE) && !defined(CLIENT_COMPILE) && \ !defined(CHKCONF_COMPILE) && defined(DO_DEBUG_MALLOC) # define free(x) MyFree(x) diff --git a/support/Makefile.in b/support/Makefile.in index 6c060b1a..7bca3dd9 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -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: Makefile.in,v 1.70 2008/06/06 23:51:26 chopin Exp $ -#* #*/ # ------------------------------------------------------------------------- diff --git a/support/mkdirhier b/support/mkdirhier index 244462a6..d402efb2 100755 --- a/support/mkdirhier +++ b/support/mkdirhier @@ -2,8 +2,6 @@ # $XConsortium: mkdirhier.sh,v 1.7 94/03/24 15:46:34 gildea Exp $ # Courtesy of Paul Eggert # -# $Id: mkdirhier,v 1.2 1997/07/22 12:40:10 kalt Exp $ -# newline=' ' diff --git a/support/sums.in b/support/sums.in index ff7dffc0..73e91f14 100644 --- a/support/sums.in +++ b/support/sums.in @@ -1,6 +1,5 @@ #!/bin/sh # trap "" 1 2 3 13 14 15 21 22 -# $Id: sums.in,v 1.1 1998/04/07 20:44:48 kalt Exp $ trap "" 1 2 3 13 14 15 /bin/cp hash.c hash.c.old 2>/dev/null /bin/mv -f hash.c hash.c.temp 1>/dev/null 2>&1