summaryrefslogtreecommitdiff
path: root/lib/libwrap
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libwrap')
-rw-r--r--lib/libwrap/clean_exit.c10
-rw-r--r--lib/libwrap/diag.c10
-rw-r--r--lib/libwrap/eval.c10
-rw-r--r--lib/libwrap/fix_options.c10
-rw-r--r--lib/libwrap/hosts_access.c10
-rw-r--r--lib/libwrap/hosts_ctl.c10
-rw-r--r--lib/libwrap/misc.c10
-rw-r--r--lib/libwrap/options.c10
-rw-r--r--lib/libwrap/percent_m.c10
-rw-r--r--lib/libwrap/percent_x.c10
-rw-r--r--lib/libwrap/refuse.c10
-rw-r--r--lib/libwrap/rfc931.c6
-rw-r--r--lib/libwrap/shell_cmd.c10
-rw-r--r--lib/libwrap/socket.c8
-rw-r--r--lib/libwrap/update.c10
15 files changed, 14 insertions, 130 deletions
diff --git a/lib/libwrap/clean_exit.c b/lib/libwrap/clean_exit.c
index 8b23e53e3bb..ef20a166be5 100644
--- a/lib/libwrap/clean_exit.c
+++ b/lib/libwrap/clean_exit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clean_exit.c,v 1.2 2003/07/18 23:05:13 david Exp $ */
+/* $OpenBSD: clean_exit.c,v 1.3 2009/10/27 23:59:30 deraadt Exp $ */
/*
* clean_exit() cleans up and terminates the program. It should be called
@@ -10,14 +10,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) clean_exit.c 1.4 94/12/28 17:42:19";
-#else
-static char rcsid[] = "$OpenBSD: clean_exit.c,v 1.2 2003/07/18 23:05:13 david Exp $";
-#endif
-#endif
-
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
diff --git a/lib/libwrap/diag.c b/lib/libwrap/diag.c
index 2a7e3e45f4e..0b8ff2f7f55 100644
--- a/lib/libwrap/diag.c
+++ b/lib/libwrap/diag.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diag.c,v 1.4 2002/06/19 07:12:42 deraadt Exp $ */
+/* $OpenBSD: diag.c,v 1.5 2009/10/27 23:59:30 deraadt Exp $ */
/*
* Routines to report various classes of problems. Each report is decorated
@@ -11,14 +11,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) diag.c 1.1 94/12/28 17:42:20";
-#else
-static char rcsid[] = "$OpenBSD: diag.c,v 1.4 2002/06/19 07:12:42 deraadt Exp $";
-#endif
-#endif
-
/* System libraries */
#include <syslog.h>
diff --git a/lib/libwrap/eval.c b/lib/libwrap/eval.c
index 99481ea3367..3151d85df45 100644
--- a/lib/libwrap/eval.c
+++ b/lib/libwrap/eval.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: eval.c,v 1.3 2002/06/07 00:03:34 itojun Exp $ */
+/* $OpenBSD: eval.c,v 1.4 2009/10/27 23:59:30 deraadt Exp $ */
/*
* Routines for controlled evaluation of host names, user names, and so on.
@@ -20,14 +20,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) eval.c 1.3 95/01/30 19:51:45";
-#else
-static char rcsid[] = "$OpenBSD: eval.c,v 1.3 2002/06/07 00:03:34 itojun Exp $";
-#endif
-#endif
-
/* System libraries. */
#include <stdio.h>
diff --git a/lib/libwrap/fix_options.c b/lib/libwrap/fix_options.c
index b1aec1a6301..8845b84d626 100644
--- a/lib/libwrap/fix_options.c
+++ b/lib/libwrap/fix_options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fix_options.c,v 1.7 2006/04/14 18:27:49 dhill Exp $ */
+/* $OpenBSD: fix_options.c,v 1.8 2009/10/27 23:59:30 deraadt Exp $ */
/*
* Routine to disable IP-level socket options. This code was taken from 4.4BSD
@@ -7,14 +7,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) fix_options.c 1.4 97/02/12 02:13:22";
-#else
-static char rcsid[] = "$OpenBSD: fix_options.c,v 1.7 2006/04/14 18:27:49 dhill Exp $";
-#endif
-#endif
-
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
diff --git a/lib/libwrap/hosts_access.c b/lib/libwrap/hosts_access.c
index 27617b4fbc6..fbde0025fb0 100644
--- a/lib/libwrap/hosts_access.c
+++ b/lib/libwrap/hosts_access.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hosts_access.c,v 1.11 2003/04/19 18:31:48 avsm Exp $ */
+/* $OpenBSD: hosts_access.c,v 1.12 2009/10/27 23:59:30 deraadt Exp $ */
/*
* This module implements a simple access control language that is based on
@@ -19,14 +19,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) hosts_access.c 1.21 97/02/12 02:13:22";
-#else
-static char rcsid[] = "$OpenBSD: hosts_access.c,v 1.11 2003/04/19 18:31:48 avsm Exp $";
-#endif
-#endif
-
/* System libraries. */
#include <sys/types.h>
diff --git a/lib/libwrap/hosts_ctl.c b/lib/libwrap/hosts_ctl.c
index ec53c3f2694..0161f9fda54 100644
--- a/lib/libwrap/hosts_ctl.c
+++ b/lib/libwrap/hosts_ctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hosts_ctl.c,v 1.1 1997/02/26 03:06:53 downsj Exp $ */
+/* $OpenBSD: hosts_ctl.c,v 1.2 2009/10/27 23:59:30 deraadt Exp $ */
/*
* hosts_ctl() combines common applications of the host access control
@@ -13,14 +13,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) hosts_ctl.c 1.4 94/12/28 17:42:27";
-#else
-static char rcsid[] = "$OpenBSD: hosts_ctl.c,v 1.1 1997/02/26 03:06:53 downsj Exp $";
-#endif
-#endif
-
#include <stdio.h>
#include "tcpd.h"
diff --git a/lib/libwrap/misc.c b/lib/libwrap/misc.c
index b0573286160..d1f3811a52f 100644
--- a/lib/libwrap/misc.c
+++ b/lib/libwrap/misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.c,v 1.6 2003/05/15 04:45:28 pjanzen Exp $ */
+/* $OpenBSD: misc.c,v 1.7 2009/10/27 23:59:30 deraadt Exp $ */
/*
* Misc routines that are used by tcpd and by tcpdchk.
@@ -6,14 +6,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsic[] = "@(#) misc.c 1.2 96/02/11 17:01:29";
-#else
-static char rcsid[] = "$OpenBSD: misc.c,v 1.6 2003/05/15 04:45:28 pjanzen Exp $";
-#endif
-#endif
-
#include <sys/types.h>
#include <sys/param.h>
#include <netinet/in.h>
diff --git a/lib/libwrap/options.c b/lib/libwrap/options.c
index ee2cbfd778f..6cb3f24c082 100644
--- a/lib/libwrap/options.c
+++ b/lib/libwrap/options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: options.c,v 1.5 2003/04/05 00:43:20 tdeval Exp $ */
+/* $OpenBSD: options.c,v 1.6 2009/10/27 23:59:30 deraadt Exp $ */
/*
* General skeleton for adding options to the access control language. The
@@ -30,14 +30,6 @@
* course of action.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) options.c 1.17 96/02/11 17:01:31";
-#else
-static char rcsid[] = "$OpenBSD: options.c,v 1.5 2003/04/05 00:43:20 tdeval Exp $";
-#endif
-#endif
-
/* System libraries. */
#include <sys/types.h>
diff --git a/lib/libwrap/percent_m.c b/lib/libwrap/percent_m.c
index 5c941d61744..c2aa835e216 100644
--- a/lib/libwrap/percent_m.c
+++ b/lib/libwrap/percent_m.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: percent_m.c,v 1.3 2004/05/31 10:39:08 otto Exp $ */
+/* $OpenBSD: percent_m.c,v 1.4 2009/10/27 23:59:30 deraadt Exp $ */
/*
* Replace %m by system error message.
@@ -6,14 +6,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) percent_m.c 1.1 94/12/28 17:42:37";
-#else
-static char rcsid[] = "$OpenBSD: percent_m.c,v 1.3 2004/05/31 10:39:08 otto Exp $";
-#endif
-#endif
-
#include <stdio.h>
#include <stdarg.h>
#include <errno.h>
diff --git a/lib/libwrap/percent_x.c b/lib/libwrap/percent_x.c
index 60291685f93..15afce17677 100644
--- a/lib/libwrap/percent_x.c
+++ b/lib/libwrap/percent_x.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: percent_x.c,v 1.2 2003/07/18 23:05:13 david Exp $ */
+/* $OpenBSD: percent_x.c,v 1.3 2009/10/27 23:59:30 deraadt Exp $ */
/*
* percent_x() takes a string and performs %<char> expansions. It aborts the
@@ -12,14 +12,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) percent_x.c 1.4 94/12/28 17:42:37";
-#else
-static char rcsid[] = "$OpenBSD: percent_x.c,v 1.2 2003/07/18 23:05:13 david Exp $";
-#endif
-#endif
-
/* System libraries. */
#include <stdio.h>
diff --git a/lib/libwrap/refuse.c b/lib/libwrap/refuse.c
index 4860986db5b..4b89ca88cce 100644
--- a/lib/libwrap/refuse.c
+++ b/lib/libwrap/refuse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: refuse.c,v 1.1 1997/02/26 03:06:55 downsj Exp $ */
+/* $OpenBSD: refuse.c,v 1.2 2009/10/27 23:59:30 deraadt Exp $ */
/*
* refuse() reports a refused connection, and takes the consequences: in
@@ -9,14 +9,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) refuse.c 1.5 94/12/28 17:42:39";
-#else
-static char rcsid[] = "$OpenBSD: refuse.c,v 1.1 1997/02/26 03:06:55 downsj Exp $";
-#endif
-#endif
-
/* System libraries. */
#include <stdio.h>
diff --git a/lib/libwrap/rfc931.c b/lib/libwrap/rfc931.c
index b72b1a872b9..0501dd880a1 100644
--- a/lib/libwrap/rfc931.c
+++ b/lib/libwrap/rfc931.c
@@ -1,14 +1,10 @@
-/* $OpenBSD: rfc931.c,v 1.11 2006/04/14 18:27:49 dhill Exp $ */
+/* $OpenBSD: rfc931.c,v 1.12 2009/10/27 23:59:30 deraadt Exp $ */
/* rfc1413 does an attempt at an ident query to a client. Originally written
* by Wietse Venema, rewritten by Bob Beck <beck@openbsd.org> to avoid
* potential longjmp problems and get rid of stdio usage on sockets.
*/
-#ifndef lint
-static char rcsid[] = "$OpenBSD: rfc931.c,v 1.11 2006/04/14 18:27:49 dhill Exp $";
-#endif
-
#include <stdio.h>
#include <sys/types.h>
#include <sys/time.h>
diff --git a/lib/libwrap/shell_cmd.c b/lib/libwrap/shell_cmd.c
index e5e2dab0dd9..dbd8d7eade4 100644
--- a/lib/libwrap/shell_cmd.c
+++ b/lib/libwrap/shell_cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: shell_cmd.c,v 1.2 2002/01/02 20:18:33 deraadt Exp $ */
+/* $OpenBSD: shell_cmd.c,v 1.3 2009/10/27 23:59:30 deraadt Exp $ */
/*
* shell_cmd() takes a shell command after %<character> substitutions. The
@@ -10,14 +10,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) shell_cmd.c 1.5 94/12/28 17:42:44";
-#else
-static char rcsid[] = "$OpenBSD: shell_cmd.c,v 1.2 2002/01/02 20:18:33 deraadt Exp $";
-#endif
-#endif
-
/* System libraries. */
#include <sys/types.h>
diff --git a/lib/libwrap/socket.c b/lib/libwrap/socket.c
index 5816855e108..93bb7f13400 100644
--- a/lib/libwrap/socket.c
+++ b/lib/libwrap/socket.c
@@ -17,14 +17,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) socket.c 1.15 97/03/21 19:27:24";
-#else
-static char rcsid[] = "$OpenBSD: socket.c,v 1.8 2006/04/14 18:27:49 dhill Exp $";
-#endif
-#endif
-
/* System libraries. */
#include <sys/types.h>
diff --git a/lib/libwrap/update.c b/lib/libwrap/update.c
index 2a5223cac89..7d3c2746d3a 100644
--- a/lib/libwrap/update.c
+++ b/lib/libwrap/update.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: update.c,v 1.5 2002/05/26 09:29:02 deraadt Exp $ */
+/* $OpenBSD: update.c,v 1.6 2009/10/27 23:59:30 deraadt Exp $ */
/*
* Routines for controlled update/initialization of request structures.
@@ -15,14 +15,6 @@
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
-#ifndef lint
-#if 0
-static char sccsid[] = "@(#) update.c 1.1 94/12/28 17:42:56";
-#else
-static char rcsid[] = "$OpenBSD: update.c,v 1.5 2002/05/26 09:29:02 deraadt Exp $";
-#endif
-#endif
-
/* System libraries */
#include <stdio.h>