The file pt_tcplisten.c lacks the $FreeBSD$ keyword. Use the opportunity to

change all files to __FBSDID.

Approved by:	das (mentor)
This commit is contained in:
Stefan Farfeleder 2004-05-30 08:54:27 +00:00
parent fe1737b6f3
commit 1eff217426
8 changed files with 18 additions and 28 deletions

View File

@ -37,10 +37,8 @@
* @(#)activate.c 8.3 (Berkeley) 4/28/95 * @(#)activate.c 8.3 (Berkeley) 4/28/95
*/ */
#ifndef lint #include <sys/cdefs.h>
static const char rcsid[] = __FBSDID("$FreeBSD$");
"$FreeBSD$";
#endif /* not lint */
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>

View File

@ -37,10 +37,8 @@
* @(#)conf.c 8.2 (Berkeley) 3/27/94 * @(#)conf.c 8.2 (Berkeley) 3/27/94
*/ */
#ifndef lint #include <sys/cdefs.h>
static const char rcsid[] = __FBSDID("$FreeBSD$");
"$FreeBSD$";
#endif /* not lint */
#include <errno.h> #include <errno.h>
#include <limits.h> #include <limits.h>

View File

@ -40,13 +40,12 @@ char copyright[] =
The Regents of the University of California. All rights reserved.\n"; The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#ifndef lint
#if 0 #if 0
static char sccsid[] = "@(#)mount_portal.c 8.6 (Berkeley) 4/26/95"; static char sccsid[] = "@(#)mount_portal.c 8.6 (Berkeley) 4/26/95";
#endif #endif
static const char rcsid[] =
"$FreeBSD$"; #include <sys/cdefs.h>
#endif /* not lint */ __FBSDID("$FreeBSD$");
#include <sys/param.h> #include <sys/param.h>
#include <sys/wait.h> #include <sys/wait.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_conf.c 8.1 (Berkeley) 6/5/93 * @(#)pt_conf.c 8.1 (Berkeley) 6/5/93
*/ */
#ifndef lint #include <sys/cdefs.h>
static const char rcsid[] = __FBSDID("$FreeBSD$");
"$FreeBSD$";
#endif /* not lint */
#include <sys/types.h> #include <sys/types.h>
#include <sys/param.h> #include <sys/param.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_exec.c 8.1 (Berkeley) 6/5/93 * @(#)pt_exec.c 8.1 (Berkeley) 6/5/93
*/ */
#ifndef lint #include <sys/cdefs.h>
static const char rcsid[] = __FBSDID("$FreeBSD$");
"$FreeBSD$";
#endif /* not lint */
#include <errno.h> #include <errno.h>
#include <sys/types.h> #include <sys/types.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_file.c 8.3 (Berkeley) 7/3/94 * @(#)pt_file.c 8.3 (Berkeley) 7/3/94
*/ */
#ifndef lint #include <sys/cdefs.h>
static const char rcsid[] = __FBSDID("$FreeBSD$");
"$FreeBSD$";
#endif /* not lint */
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>

View File

@ -37,10 +37,8 @@
* @(#)pt_tcp.c 8.5 (Berkeley) 4/28/95 * @(#)pt_tcp.c 8.5 (Berkeley) 4/28/95
*/ */
#ifndef lint #include <sys/cdefs.h>
static const char rcsid[] = __FBSDID("$FreeBSD$");
"$FreeBSD$";
#endif /* not lint */
#include <errno.h> #include <errno.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -41,6 +41,9 @@
* pt_tcp.c,v 1.1.1.1 1994/05/26 06:34:34 rgrimes Exp * pt_tcp.c,v 1.1.1.1 1994/05/26 06:34:34 rgrimes Exp
*/ */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <stdio.h> #include <stdio.h>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h> #include <stdlib.h>