summaryrefslogtreecommitdiffstats
path: root/usr.sbin/atm
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-08-28 01:35:59 +0000
committerpeter <peter@FreeBSD.org>1999-08-28 01:35:59 +0000
commitefabb9ccb197b05958967dd035c279ba3bc19cb0 (patch)
tree2aca709a2adc99fd79e8420c6abe78733949e203 /usr.sbin/atm
parent06c04c899d1871a26f60711cdbb0ea16e85dfdc7 (diff)
downloadFreeBSD-src-efabb9ccb197b05958967dd035c279ba3bc19cb0.zip
FreeBSD-src-efabb9ccb197b05958967dd035c279ba3bc19cb0.tar.gz
$Id$ -> $FreeBSD$
Diffstat (limited to 'usr.sbin/atm')
-rw-r--r--usr.sbin/atm/Makefile2
-rw-r--r--usr.sbin/atm/Makefile.inc2
-rw-r--r--usr.sbin/atm/atmarpd/Makefile2
-rw-r--r--usr.sbin/atm/atmarpd/atmarp_config.c4
-rw-r--r--usr.sbin/atm/atmarpd/atmarp_log.c4
-rw-r--r--usr.sbin/atm/atmarpd/atmarp_scsp.c4
-rw-r--r--usr.sbin/atm/atmarpd/atmarp_subr.c4
-rw-r--r--usr.sbin/atm/atmarpd/atmarp_timer.c4
-rw-r--r--usr.sbin/atm/atmarpd/atmarp_var.h2
-rw-r--r--usr.sbin/atm/atmarpd/atmarpd.82
-rw-r--r--usr.sbin/atm/atmarpd/atmarpd.c4
-rw-r--r--usr.sbin/atm/scspd/Makefile2
-rw-r--r--usr.sbin/atm/scspd/scsp_cafsm.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_config.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_config_lex.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_config_parse.y4
-rw-r--r--usr.sbin/atm/scspd/scsp_hfsm.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_if.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_if.h2
-rw-r--r--usr.sbin/atm/scspd/scsp_input.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_log.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_msg.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_msg.h2
-rw-r--r--usr.sbin/atm/scspd/scsp_output.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_print.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_socket.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_subr.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_timer.c4
-rw-r--r--usr.sbin/atm/scspd/scsp_var.h2
-rw-r--r--usr.sbin/atm/scspd/scspd.82
-rw-r--r--usr.sbin/atm/scspd/scspd.c4
31 files changed, 52 insertions, 52 deletions
diff --git a/usr.sbin/atm/Makefile b/usr.sbin/atm/Makefile
index a32385f..96f3cbf 100644
--- a/usr.sbin/atm/Makefile
+++ b/usr.sbin/atm/Makefile
@@ -23,7 +23,7 @@
# Copies of this Software may be made, however, the above copyright
# notice must be reproduced on all copies.
#
-# @(#) $Id: Makefile,v 1.5 1998/07/10 16:01:58 jpt Exp $
+# @(#) $FreeBSD$
#
#
diff --git a/usr.sbin/atm/Makefile.inc b/usr.sbin/atm/Makefile.inc
index bcc3406..2a0f3f6 100644
--- a/usr.sbin/atm/Makefile.inc
+++ b/usr.sbin/atm/Makefile.inc
@@ -23,7 +23,7 @@
# Copies of this Software may be made, however, the above copyright
# notice must be reproduced on all copies.
#
-# @(#) $Id: Makefile,v 1.5 1998/07/10 16:01:58 jpt Exp $
+# @(#) $FreeBSD$
#
#
diff --git a/usr.sbin/atm/atmarpd/Makefile b/usr.sbin/atm/atmarpd/Makefile
index 013e119..ebe4056 100644
--- a/usr.sbin/atm/atmarpd/Makefile
+++ b/usr.sbin/atm/atmarpd/Makefile
@@ -23,7 +23,7 @@
# Copies of this Software may be made, however, the above copyright
# notice must be reproduced on all copies.
#
-# @(#) $Id: Makefile,v 1.2 1998/09/15 19:16:33 phk Exp $
+# @(#) $FreeBSD$
#
#
diff --git a/usr.sbin/atm/atmarpd/atmarp_config.c b/usr.sbin/atm/atmarpd/atmarp_config.c
index 03cc11c..4f7d62e 100644
--- a/usr.sbin/atm/atmarpd/atmarp_config.c
+++ b/usr.sbin/atm/atmarpd/atmarp_config.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atmarp_config.c,v 1.1 1998/09/15 08:23:14 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -61,7 +61,7 @@
#include "atmarp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: atmarp_config.c,v 1.1 1998/09/15 08:23:14 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/atmarpd/atmarp_log.c b/usr.sbin/atm/atmarpd/atmarp_log.c
index f7201b0..d697747 100644
--- a/usr.sbin/atm/atmarpd/atmarp_log.c
+++ b/usr.sbin/atm/atmarpd/atmarp_log.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atmarp_log.c,v 1.1 1998/09/15 08:23:14 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -64,7 +64,7 @@
#include "atmarp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: atmarp_log.c,v 1.1 1998/09/15 08:23:14 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/atmarpd/atmarp_scsp.c b/usr.sbin/atm/atmarpd/atmarp_scsp.c
index b0a01a7..0f842e4 100644
--- a/usr.sbin/atm/atmarpd/atmarp_scsp.c
+++ b/usr.sbin/atm/atmarpd/atmarp_scsp.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atmarp_scsp.c,v 1.1 1998/09/15 08:23:14 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -64,7 +64,7 @@
#include "atmarp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: atmarp_scsp.c,v 1.1 1998/09/15 08:23:14 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/atmarpd/atmarp_subr.c b/usr.sbin/atm/atmarpd/atmarp_subr.c
index 51ba9fa..8f5db45 100644
--- a/usr.sbin/atm/atmarpd/atmarp_subr.c
+++ b/usr.sbin/atm/atmarpd/atmarp_subr.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atmarp_subr.c,v 1.1 1998/09/15 08:23:14 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -68,7 +68,7 @@
#include "atmarp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: atmarp_subr.c,v 1.1 1998/09/15 08:23:14 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/atmarpd/atmarp_timer.c b/usr.sbin/atm/atmarpd/atmarp_timer.c
index cee01eb..ad7c987 100644
--- a/usr.sbin/atm/atmarpd/atmarp_timer.c
+++ b/usr.sbin/atm/atmarpd/atmarp_timer.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atmarp_timer.c,v 1.1 1998/09/15 08:23:15 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -61,7 +61,7 @@
#include "atmarp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: atmarp_timer.c,v 1.1 1998/09/15 08:23:15 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/atmarpd/atmarp_var.h b/usr.sbin/atm/atmarpd/atmarp_var.h
index 708dc63..f11d982 100644
--- a/usr.sbin/atm/atmarpd/atmarp_var.h
+++ b/usr.sbin/atm/atmarpd/atmarp_var.h
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atmarp_var.h,v 1.1 1998/09/15 08:23:15 phk Exp $
+ * @(#) $FreeBSD$
*
*/
diff --git a/usr.sbin/atm/atmarpd/atmarpd.8 b/usr.sbin/atm/atmarpd/atmarpd.8
index 7aabddf..24693f0 100644
--- a/usr.sbin/atm/atmarpd/atmarpd.8
+++ b/usr.sbin/atm/atmarpd/atmarpd.8
@@ -22,7 +22,7 @@
.\" Copies of this Software may be made, however, the above copyright
.\" notice must be reproduced on all copies.
.\"
-.\" @(#) $Id: atmarpd.8,v 1.1 1998/09/15 08:23:15 phk Exp $
+.\" @(#) $FreeBSD$
.\"
.\"
.de EX \"Begin example
diff --git a/usr.sbin/atm/atmarpd/atmarpd.c b/usr.sbin/atm/atmarpd/atmarpd.c
index befa071..063a304 100644
--- a/usr.sbin/atm/atmarpd/atmarpd.c
+++ b/usr.sbin/atm/atmarpd/atmarpd.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: atmarpd.c,v 1.1 1998/09/15 08:23:15 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -63,7 +63,7 @@
#include "atmarp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: atmarpd.c,v 1.1 1998/09/15 08:23:15 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/Makefile b/usr.sbin/atm/scspd/Makefile
index ce36b5a..edea748 100644
--- a/usr.sbin/atm/scspd/Makefile
+++ b/usr.sbin/atm/scspd/Makefile
@@ -23,7 +23,7 @@
# Copies of this Software may be made, however, the above copyright
# notice must be reproduced on all copies.
#
-# @(#) $Id: Makefile,v 1.4 1998/09/15 19:01:46 jkh Exp $
+# @(#) $FreeBSD$
#
#
diff --git a/usr.sbin/atm/scspd/scsp_cafsm.c b/usr.sbin/atm/scspd/scsp_cafsm.c
index 6741dde..dfb9055 100644
--- a/usr.sbin/atm/scspd/scsp_cafsm.c
+++ b/usr.sbin/atm/scspd/scsp_cafsm.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_cafsm.c,v 1.1 1998/09/15 08:23:15 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -61,7 +61,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_cafsm.c,v 1.1 1998/09/15 08:23:15 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_config.c b/usr.sbin/atm/scspd/scsp_config.c
index 9d86b58..442fbdf 100644
--- a/usr.sbin/atm/scspd/scsp_config.c
+++ b/usr.sbin/atm/scspd/scsp_config.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_config.c,v 1.1 1998/09/15 08:23:15 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -60,7 +60,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_config.c,v 1.1 1998/09/15 08:23:15 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_config_lex.c b/usr.sbin/atm/scspd/scsp_config_lex.c
index c930d8c..d83357b 100644
--- a/usr.sbin/atm/scspd/scsp_config_lex.c
+++ b/usr.sbin/atm/scspd/scsp_config_lex.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_config_lex.c,v 1.1 1998/09/15 08:23:16 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -62,7 +62,7 @@
#include "scsp_config_parse.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_config_lex.c,v 1.1 1998/09/15 08:23:16 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_config_parse.y b/usr.sbin/atm/scspd/scsp_config_parse.y
index e5ef706..ad6108f 100644
--- a/usr.sbin/atm/scspd/scsp_config_parse.y
+++ b/usr.sbin/atm/scspd/scsp_config_parse.y
@@ -24,7 +24,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_config_parse.y,v 1.1 1998/09/15 08:23:16 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -66,7 +66,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_config_parse.y,v 1.1 1998/09/15 08:23:16 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_hfsm.c b/usr.sbin/atm/scspd/scsp_hfsm.c
index 8dae5a1..d1bec16 100644
--- a/usr.sbin/atm/scspd/scsp_hfsm.c
+++ b/usr.sbin/atm/scspd/scsp_hfsm.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_hfsm.c,v 1.1 1998/09/15 08:23:16 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -58,7 +58,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_hfsm.c,v 1.1 1998/09/15 08:23:16 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_if.c b/usr.sbin/atm/scspd/scsp_if.c
index e9ced0a..53496b8 100644
--- a/usr.sbin/atm/scspd/scsp_if.c
+++ b/usr.sbin/atm/scspd/scsp_if.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_if.c,v 1.1 1998/09/15 08:23:16 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -62,7 +62,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_if.c,v 1.1 1998/09/15 08:23:16 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_if.h b/usr.sbin/atm/scspd/scsp_if.h
index dde3407..844ee2c 100644
--- a/usr.sbin/atm/scspd/scsp_if.h
+++ b/usr.sbin/atm/scspd/scsp_if.h
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_if.h,v 1.2 1998/07/16 15:59:33 johnc Exp $
+ * @(#) $FreeBSD$
*
*/
diff --git a/usr.sbin/atm/scspd/scsp_input.c b/usr.sbin/atm/scspd/scsp_input.c
index 86cc3be..8f0ccbf 100644
--- a/usr.sbin/atm/scspd/scsp_input.c
+++ b/usr.sbin/atm/scspd/scsp_input.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_input.c,v 1.1 1998/09/15 08:23:16 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -61,7 +61,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_input.c,v 1.1 1998/09/15 08:23:16 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_log.c b/usr.sbin/atm/scspd/scsp_log.c
index 21f4222..8de8d2c 100644
--- a/usr.sbin/atm/scspd/scsp_log.c
+++ b/usr.sbin/atm/scspd/scsp_log.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_log.c,v 1.1 1998/09/15 08:23:16 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -67,7 +67,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_log.c,v 1.1 1998/09/15 08:23:16 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_msg.c b/usr.sbin/atm/scspd/scsp_msg.c
index 9db61ba..c7329ec 100644
--- a/usr.sbin/atm/scspd/scsp_msg.c
+++ b/usr.sbin/atm/scspd/scsp_msg.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_msg.c,v 1.1 1998/09/15 08:23:16 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -61,7 +61,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_msg.c,v 1.1 1998/09/15 08:23:16 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_msg.h b/usr.sbin/atm/scspd/scsp_msg.h
index 3ee3bf5..c70ada7 100644
--- a/usr.sbin/atm/scspd/scsp_msg.h
+++ b/usr.sbin/atm/scspd/scsp_msg.h
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_msg.h,v 1.1 1998/07/10 15:29:02 johnc Exp $
+ * @(#) $FreeBSD$
*
*/
diff --git a/usr.sbin/atm/scspd/scsp_output.c b/usr.sbin/atm/scspd/scsp_output.c
index 7f8f1cd..344f5c0 100644
--- a/usr.sbin/atm/scspd/scsp_output.c
+++ b/usr.sbin/atm/scspd/scsp_output.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_output.c,v 1.1 1998/09/15 08:23:17 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -62,7 +62,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_output.c,v 1.1 1998/09/15 08:23:17 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_print.c b/usr.sbin/atm/scspd/scsp_print.c
index 89b69a5..2855564 100644
--- a/usr.sbin/atm/scspd/scsp_print.c
+++ b/usr.sbin/atm/scspd/scsp_print.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_print.c,v 1.1 1998/09/15 08:23:17 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -62,7 +62,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_print.c,v 1.1 1998/09/15 08:23:17 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_socket.c b/usr.sbin/atm/scspd/scsp_socket.c
index aa6e040..2dd37e2 100644
--- a/usr.sbin/atm/scspd/scsp_socket.c
+++ b/usr.sbin/atm/scspd/scsp_socket.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_socket.c,v 1.1 1998/09/15 08:23:17 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -63,7 +63,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_socket.c,v 1.1 1998/09/15 08:23:17 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_subr.c b/usr.sbin/atm/scspd/scsp_subr.c
index 3540694..e1c8581 100644
--- a/usr.sbin/atm/scspd/scsp_subr.c
+++ b/usr.sbin/atm/scspd/scsp_subr.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_subr.c,v 1.1 1998/09/15 08:23:17 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -64,7 +64,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_subr.c,v 1.1 1998/09/15 08:23:17 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_timer.c b/usr.sbin/atm/scspd/scsp_timer.c
index d61dad3..82e49fc 100644
--- a/usr.sbin/atm/scspd/scsp_timer.c
+++ b/usr.sbin/atm/scspd/scsp_timer.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_timer.c,v 1.1 1998/09/15 08:23:17 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -57,7 +57,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scsp_timer.c,v 1.1 1998/09/15 08:23:17 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
diff --git a/usr.sbin/atm/scspd/scsp_var.h b/usr.sbin/atm/scspd/scsp_var.h
index 707b688..115ec42 100644
--- a/usr.sbin/atm/scspd/scsp_var.h
+++ b/usr.sbin/atm/scspd/scsp_var.h
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scsp_var.h,v 1.1 1998/09/15 08:23:17 phk Exp $
+ * @(#) $FreeBSD$
*
*/
diff --git a/usr.sbin/atm/scspd/scspd.8 b/usr.sbin/atm/scspd/scspd.8
index 1a9b0ab..5c0b160 100644
--- a/usr.sbin/atm/scspd/scspd.8
+++ b/usr.sbin/atm/scspd/scspd.8
@@ -22,7 +22,7 @@
.\" Copies of this Software may be made, however, the above copyright
.\" notice must be reproduced on all copies.
.\"
-.\" @(#) $Id: scspd.1,v 1.2 1998/08/26 21:39:38 johnc Exp $
+.\" @(#) $FreeBSD$
.\"
.\"
.de EX \"Begin example
diff --git a/usr.sbin/atm/scspd/scspd.c b/usr.sbin/atm/scspd/scspd.c
index 932fdef..a8a6d89 100644
--- a/usr.sbin/atm/scspd/scspd.c
+++ b/usr.sbin/atm/scspd/scspd.c
@@ -23,7 +23,7 @@
* Copies of this Software may be made, however, the above copyright
* notice must be reproduced on all copies.
*
- * @(#) $Id: scspd.c,v 1.1 1998/09/15 08:23:17 phk Exp $
+ * @(#) $FreeBSD$
*
*/
@@ -63,7 +63,7 @@
#include "scsp_var.h"
#ifndef lint
-__RCSID("@(#) $Id: scspd.c,v 1.1 1998/09/15 08:23:17 phk Exp $");
+__RCSID("@(#) $FreeBSD$");
#endif
OpenPOWER on IntegriCloud