summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-02 17:48:44 +0000
committermycroft <mycroft@NetBSD.org>1993-08-02 17:48:44 +0000
commitaee4b07b8a049bdc57cefcbb82bebeb6f341859a (patch)
treed2baf06176c4135542f5717a0fa9b45752f77e4f /libexec
parentc8194f0876b272d70833a6b91ec566314a02050a (diff)
Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/crond/Makefile11
-rw-r--r--libexec/crond/Makefile.vixie38
-rw-r--r--libexec/crond/arpadate.c4
-rw-r--r--libexec/crond/config.h7
-rw-r--r--libexec/crond/crond.840
-rw-r--r--libexec/crond/crond.c8
-rw-r--r--libexec/crond/database.c11
-rw-r--r--libexec/crond/do_command.c48
-rw-r--r--libexec/crond/entry.c15
-rw-r--r--libexec/crond/env.c8
-rw-r--r--libexec/crond/job.c8
-rw-r--r--libexec/crond/misc.c13
-rw-r--r--libexec/crond/user.c11
-rw-r--r--libexec/elvispreserve/Makefile1
-rw-r--r--libexec/elvispreserve/elvispreserve.81
-rw-r--r--libexec/elvispreserve/elvispreserve.c4
-rw-r--r--libexec/rpc.rstatd/Makefile6
-rw-r--r--libexec/rpc.rstatd/rpc.rstatd.84
-rw-r--r--libexec/rpc.rstatd/rstatd.c4
-rw-r--r--libexec/rpc.rusersd/Makefile6
-rw-r--r--libexec/rpc.rusersd/rpc.rusersd.84
-rw-r--r--libexec/rpc.rusersd/rusers_proc.c4
-rw-r--r--libexec/rpc.rusersd/rusersd.c4
-rw-r--r--libexec/rpc.rwalld/Makefile6
-rw-r--r--libexec/rpc.rwalld/rpc.rwalld.84
-rw-r--r--libexec/rpc.rwalld/rwalld.c4
26 files changed, 110 insertions, 164 deletions
diff --git a/libexec/crond/Makefile b/libexec/crond/Makefile
index 35bb9b5daab..18002245e5a 100644
--- a/libexec/crond/Makefile
+++ b/libexec/crond/Makefile
@@ -1,13 +1,4 @@
-#
-#
-#
-# PATCHES MAGIC LEVEL PATCH THAT GOT US HERE
-# -------------------- ----- ----------------------
-# CURRENT PATCH LEVEL: 1 00037
-# -------------------- ----- ----------------------
-#
-# 15 Sep 92 Adrian Hall Fixes SRCS line
-#
+# $Id: Makefile,v 1.4 1993/08/02 17:50:18 mycroft Exp $
PROG= crond
SRCS= crond.c database.c user.c entry.c misc.c job.c do_command.c env.c
diff --git a/libexec/crond/Makefile.vixie b/libexec/crond/Makefile.vixie
index fd67d95843f..c9dd0d7bc75 100644
--- a/libexec/crond/Makefile.vixie
+++ b/libexec/crond/Makefile.vixie
@@ -1,28 +1,20 @@
-# Makefile for vixie's cron
+# Copyright 1988,1990,1993 by Paul Vixie
+# All rights reserved
#
-# $Header: /cvsroot/src/libexec/crond/Attic/Makefile.vixie,v 1.2 1993/05/28 08:34:03 cgd Exp $
+# Distribute freely, except: don't remove my name from the source or
+# documentation (don't take credit for my work), mark your changes (don't
+# get me blamed for your possible bugs), don't alter or remove this
+# notice. May be sold if buildable source is provided to buyer. No
+# warrantee of any kind, express or implied, is included with this
+# software; use at your own risk, responsibility for damages (if any) to
+# anyone resulting from the use of this software rests entirely with the
+# user.
#
-# vix 03mar88 [moved to RCS, rest of log is in there]
-# vix 30mar87 [goodbye, time.c; hello, getopt]
-# vix 12feb87 [cleanup for distribution]
-# vix 30dec86 [written]
-
-#/* Copyright 1988,1990,1993 by Paul Vixie
-# * All rights reserved
-# *
-# * Distribute freely, except: don't remove my name from the source or
-# * documentation (don't take credit for my work), mark your changes (don't
-# * get me blamed for your possible bugs), don't alter or remove this
-# * notice. May be sold if buildable source is provided to buyer. No
-# * warrantee of any kind, express or implied, is included with this
-# * software; use at your own risk, responsibility for damages (if any) to
-# * anyone resulting from the use of this software rests entirely with the
-# * user.
-# *
-# * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
-# * I'll try to keep a version up to date. I can be reached as follows:
-# * paul@vix.com || {hoptoad,pacbell,decwrl}!vixie!paul
-# */
+# Send bug reports, bug fixes, enhancements, requests, flames, etc., and
+# I'll try to keep a version up to date. I can be reached as follows:
+# paul@vix.com || {hoptoad,pacbell,decwrl}!vixie!paul
+#
+# $Id: Makefile.vixie,v 1.3 1993/08/02 17:50:19 mycroft Exp $
# NOTES:
# 'make' can be done by anyone
diff --git a/libexec/crond/arpadate.c b/libexec/crond/arpadate.c
index 9b247010ed2..3e164133eb9 100644
--- a/libexec/crond/arpadate.c
+++ b/libexec/crond/arpadate.c
@@ -1,3 +1,7 @@
+#ifndef lint
+static char rcsid[] = "$Id: arpadate.c,v 1.2 1993/08/02 17:50:20 mycroft Exp $";
+#endif /* not lint */
+
#include <time.h>
#include "cron.h"
diff --git a/libexec/crond/config.h b/libexec/crond/config.h
index afc089178af..c2c73b5757b 100644
--- a/libexec/crond/config.h
+++ b/libexec/crond/config.h
@@ -1,8 +1,3 @@
-/* config.h - configurables for Vixie Cron
- *
- * $Header: /cvsroot/src/libexec/crond/Attic/config.h,v 1.4 1993/05/28 08:56:47 cgd Exp $
- */
-
/* Copyright 1988,1990,1993 by Paul Vixie
* All rights reserved
*
@@ -19,6 +14,8 @@
* I'll try to keep a version up to date. I can be reached as follows:
* Paul Vixie, 329 Noe Street, San Francisco, CA, 94114, (415) 864-7013,
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
+ *
+ * $Id: config.h,v 1.5 1993/08/02 17:50:20 mycroft Exp $
*/
#ifndef _CONFIG_FLAG
diff --git a/libexec/crond/crond.8 b/libexec/crond/crond.8
index 216798ab2fd..7c7dd632e7d 100644
--- a/libexec/crond/crond.8
+++ b/libexec/crond/crond.8
@@ -1,22 +1,24 @@
-.\" $Header: /cvsroot/src/libexec/crond/Attic/crond.8,v 1.2 1993/05/28 08:34:12 cgd Exp $
-.\"
-.\"/* Copyright 1988,1990 by Paul Vixie
-.\" * All rights reserved
-.\" *
-.\" * Distribute freely, except: don't remove my name from the source or
-.\" * documentation (don't take credit for my work), mark your changes (don't
-.\" * get me blamed for your possible bugs), don't alter or remove this
-.\" * notice. May be sold if buildable source is provided to buyer. No
-.\" * warrantee of any kind, express or implied, is included with this
-.\" * software; use at your own risk, responsibility for damages (if any) to
-.\" * anyone resulting from the use of this software rests entirely with the
-.\" * user.
-.\" *
-.\" * Send bug reports, bug fixes, enhancements, requests, flames, etc., and
-.\" * I'll try to keep a version up to date. I can be reached as follows:
-.\" * Paul Vixie, 329 Noe Street, San Francisco, CA, 94114, (415) 864-7013,
-.\" * paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
-.\" */
+.\" -*- nroff -*-
+.\"
+.\" Copyright 1988,1990 by Paul Vixie
+.\" All rights reserved
+.\"
+.\" Distribute freely, except: don't remove my name from the source or
+.\" documentation (don't take credit for my work), mark your changes (don't
+.\" get me blamed for your possible bugs), don't alter or remove this
+.\" notice. May be sold if buildable source is provided to buyer. No
+.\" warrantee of any kind, express or implied, is included with this
+.\" software; use at your own risk, responsibility for damages (if any) to
+.\" anyone resulting from the use of this software rests entirely with the
+.\" user.
+.\"
+.\" Send bug reports, bug fixes, enhancements, requests, flames, etc., and
+.\" I'll try to keep a version up to date. I can be reached as follows:
+.\" Paul Vixie, 329 Noe Street, San Francisco, CA, 94114, (415) 864-7013,
+.\" paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
+.\"
+.\" $Id: crond.8,v 1.3 1993/08/02 17:50:21 mycroft Exp $
+.\"
.TH CROND 8 "15 Nov 1988"
.UC 4
.SH NAME
diff --git a/libexec/crond/crond.c b/libexec/crond/crond.c
index 5b71b669bff..49a008f2000 100644
--- a/libexec/crond/crond.c
+++ b/libexec/crond/crond.c
@@ -1,7 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/crond.c,v 1.3 1993/05/28 08:34:14 cgd Exp $";
-#endif
-
/* Copyright 1988,1990 by Paul Vixie
* All rights reserved
*
@@ -20,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/crond.c,v 1.3 1
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: crond.c,v 1.4 1993/08/02 17:50:22 mycroft Exp $";
+#endif /* not lint */
+
#define MAIN_PROGRAM
diff --git a/libexec/crond/database.c b/libexec/crond/database.c
index a2d55d78d0d..7025b04a9ef 100644
--- a/libexec/crond/database.c
+++ b/libexec/crond/database.c
@@ -1,10 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/database.c,v 1.2 1993/05/28 08:34:16 cgd Exp $";
-#endif
-
-/* vix 26jan87 [RCS has the log]
- */
-
/* Copyright 1988,1990 by Paul Vixie
* All rights reserved
*
@@ -23,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/database.c,v 1.
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: database.c,v 1.3 1993/08/02 17:50:23 mycroft Exp $";
+#endif
+
#include "cron.h"
#include <pwd.h>
diff --git a/libexec/crond/do_command.c b/libexec/crond/do_command.c
index 8e18a2b71ee..8229c41fafe 100644
--- a/libexec/crond/do_command.c
+++ b/libexec/crond/do_command.c
@@ -1,47 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/do_command.c,v 1.5 1993/05/28 09:19:08 cgd Exp $";
-#endif
-
-/* $Source: /cvsroot/src/libexec/crond/Attic/do_command.c,v $
- * $Revision: 1.5 $
- * $Log: do_command.c,v $
- * Revision 1.5 1993/05/28 09:19:08 cgd
- * it was putting EOF, rather than newline. comments around
- * change bogus; it will *always* be putting out newline because
- * of the program logic. the comments don't seem to indicate that.
- *
- * Revision 1.4 1993/05/28 08:34:17 cgd
- * update for newest version of vixie's cron, as of May 27 1993
- *
- * Revision 2.2 1992/12/18 18:46:57 vixie
- * vix/ckp
- *
- * Revision 2.1 90/07/18 00:23:38 vixie
- * Baseline for 4.4BSD release
- *
- * Revision 2.0 88/12/10 04:57:44 vixie
- * V2 Beta
- *
- * Revision 1.5 88/11/29 13:06:06 vixie
- * seems to work on Ultrix 3.0 FT1
- *
- * Revision 1.4 87/05/02 17:33:35 paul
- * baseline for mod.sources release
- *
- * Revision 1.3 87/04/09 00:03:58 paul
- * improved data hiding, locality of declaration/references
- * fixed a rs@mirror bug by redesigning the mailto stuff completely
- *
- * Revision 1.2 87/03/19 12:46:24 paul
- * implemented suggestions from rs@mirror (Rich $alz):
- * MAILTO="" means no mail should be sent
- * various fixes of bugs or lint complaints
- * put a To: line in the mail message
- *
- * Revision 1.1 87/01/26 23:47:00 paul
- * Initial revision
- */
-
/* Copyright 1988,1990 by Paul Vixie
* All rights reserved
*
@@ -60,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/do_command.c,v
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: do_command.c,v 1.6 1993/08/02 17:50:23 mycroft Exp $";
+#endif
+
#include "cron.h"
#include <signal.h>
diff --git a/libexec/crond/entry.c b/libexec/crond/entry.c
index 52a7571fbd7..e835cf3f5e1 100644
--- a/libexec/crond/entry.c
+++ b/libexec/crond/entry.c
@@ -1,14 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/entry.c,v 1.2 1993/05/28 08:34:19 cgd Exp $";
-#endif
-
-/* vix 26jan87 [RCS'd; rest of log is in RCS file]
- * vix 01jan87 [added line-level error recovery]
- * vix 31dec86 [added /step to the from-to range, per bob@acornrc]
- * vix 30dec86 [written]
- */
-
-
/* Copyright 1988,1990 by Paul Vixie
* All rights reserved
*
@@ -27,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/entry.c,v 1.2 1
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: entry.c,v 1.3 1993/08/02 17:50:24 mycroft Exp $";
+#endif
+
#include "cron.h"
diff --git a/libexec/crond/env.c b/libexec/crond/env.c
index b95c8cf1838..b17a4d27bc1 100644
--- a/libexec/crond/env.c
+++ b/libexec/crond/env.c
@@ -1,7 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/env.c,v 1.3 1993/05/28 08:34:20 cgd Exp $";
-#endif
-
/* Copyright 1988,1990 by Paul Vixie
* All rights reserved
*
@@ -20,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/env.c,v 1.3 199
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: env.c,v 1.4 1993/08/02 17:50:25 mycroft Exp $";
+#endif
+
#include "cron.h"
diff --git a/libexec/crond/job.c b/libexec/crond/job.c
index 08508dea2b2..051f254e865 100644
--- a/libexec/crond/job.c
+++ b/libexec/crond/job.c
@@ -1,7 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/job.c,v 1.2 1993/05/28 08:34:21 cgd Exp $";
-#endif
-
/* Copyright 1988,1990 by Paul Vixie
* All rights reserved
*
@@ -20,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/job.c,v 1.2 199
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: job.c,v 1.3 1993/08/02 17:50:26 mycroft Exp $";
+#endif
+
#include "cron.h"
diff --git a/libexec/crond/misc.c b/libexec/crond/misc.c
index 5d940eebe4e..7f2a3ec9a31 100644
--- a/libexec/crond/misc.c
+++ b/libexec/crond/misc.c
@@ -1,12 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/misc.c,v 1.5 1993/05/28 08:34:22 cgd Exp $";
-#endif
-
-/* vix 26jan87 [RCS has the rest of the log]
- * vix 15jan87 [added TIOCNOTTY, thanks csg@pyramid]
- * vix 30dec86 [written]
- */
-
/* Copyright 1988,1990,1993 by Paul Vixie
* All rights reserved
*
@@ -25,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/misc.c,v 1.5 19
* paul@vix.com || paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: misc.c,v 1.6 1993/08/02 17:50:27 mycroft Exp $";
+#endif /* not lint */
+
#include "cron.h"
#include <sys/time.h>
diff --git a/libexec/crond/user.c b/libexec/crond/user.c
index f6f8215b659..8d53a0673f1 100644
--- a/libexec/crond/user.c
+++ b/libexec/crond/user.c
@@ -1,10 +1,3 @@
-#if !defined(lint) && !defined(LINT)
-static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/user.c,v 1.3 1993/05/28 08:34:23 cgd Exp $";
-#endif
-
-/* vix 26jan87 [log is in RCS file]
- */
-
/* Copyright 1988,1990 by Paul Vixie
* All rights reserved
*
@@ -23,6 +16,10 @@ static char rcsid[] = "$Header: /cvsroot/src/libexec/crond/Attic/user.c,v 1.3 19
* paul@vixie.sf.ca.us || {hoptoad,pacbell,decwrl,crash}!vixie!paul
*/
+#ifndef lint
+static char rcsid[] = "$Id: user.c,v 1.4 1993/08/02 17:50:28 mycroft Exp $";
+#endif /* not lint */
+
#include "cron.h"
diff --git a/libexec/elvispreserve/Makefile b/libexec/elvispreserve/Makefile
index 3d868c9d7d1..02c77a29739 100644
--- a/libexec/elvispreserve/Makefile
+++ b/libexec/elvispreserve/Makefile
@@ -1,3 +1,4 @@
+# $Id: Makefile,v 1.4 1993/08/02 17:50:31 mycroft Exp $
PROG= elvispreserve
CFLAGS+=-I${.CURDIR}/../../usr.bin/elvis
diff --git a/libexec/elvispreserve/elvispreserve.8 b/libexec/elvispreserve/elvispreserve.8
index ae4cdfbe5b3..b5531ceb1ca 100644
--- a/libexec/elvispreserve/elvispreserve.8
+++ b/libexec/elvispreserve/elvispreserve.8
@@ -1,3 +1,4 @@
+.\" $Id: elvispreserve.8,v 1.4 1993/08/02 17:50:32 mycroft Exp $ -*- nroff -*-
.TH ELVISPRESERVE 8
.SH NAME
elvispreserve - Preserve the the modified version of a file after a crash.
diff --git a/libexec/elvispreserve/elvispreserve.c b/libexec/elvispreserve/elvispreserve.c
index f5a76e40b6e..f848eb86d54 100644
--- a/libexec/elvispreserve/elvispreserve.c
+++ b/libexec/elvispreserve/elvispreserve.c
@@ -49,6 +49,10 @@
* - tell user that file was preserved
*/
+#ifndef lint
+static char rcsid[] = "$Id: elvispreserve.c,v 1.3 1993/08/02 17:50:34 mycroft Exp $";
+#endif /* not lint */
+
#include <stdio.h>
#include "config.h"
#include "vi.h"
diff --git a/libexec/rpc.rstatd/Makefile b/libexec/rpc.rstatd/Makefile
index f2315f1657e..deed0d03ae3 100644
--- a/libexec/rpc.rstatd/Makefile
+++ b/libexec/rpc.rstatd/Makefile
@@ -1,8 +1,4 @@
-#
-# a makefile for /usr/sbin/rpc.rstatd
-#
-# $Header: /cvsroot/src/libexec/rpc.rstatd/Makefile,v 1.3 1993/06/08 01:19:09 brezak Exp $
-#
+# $Id: Makefile,v 1.4 1993/08/02 17:50:37 mycroft Exp $
PROG = rpc.rstatd
SRCS = rstatd.c rstat_proc.c
diff --git a/libexec/rpc.rstatd/rpc.rstatd.8 b/libexec/rpc.rstatd/rpc.rstatd.8
index 3f53932b609..7ea4826bfcf 100644
--- a/libexec/rpc.rstatd/rpc.rstatd.8
+++ b/libexec/rpc.rstatd/rpc.rstatd.8
@@ -1,3 +1,5 @@
+.\" -*- nroff -*-
+.\"
.\" Copyright (c) 1985, 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -29,6 +31,8 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
+.\" $Id: rpc.rstatd.8,v 1.3 1993/08/02 17:50:38 mycroft Exp $
+.\"
.Dd June 7, 1993
.Dt RPC.RSTATD 8
.Os BSD 4.3
diff --git a/libexec/rpc.rstatd/rstatd.c b/libexec/rpc.rstatd/rstatd.c
index 8fa7e4c924a..fbdb183b8f5 100644
--- a/libexec/rpc.rstatd/rstatd.c
+++ b/libexec/rpc.rstatd/rstatd.c
@@ -31,6 +31,10 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+static char rcsid[] = "$Id: rstatd.c,v 1.4 1993/08/02 17:50:40 mycroft Exp $";
+#endif /* not lint */
+
#include <stdio.h>
#include <rpc/rpc.h>
#include <signal.h>
diff --git a/libexec/rpc.rusersd/Makefile b/libexec/rpc.rusersd/Makefile
index fd2630ea1a6..33859d22831 100644
--- a/libexec/rpc.rusersd/Makefile
+++ b/libexec/rpc.rusersd/Makefile
@@ -1,8 +1,4 @@
-#
-# a makefile for /usr/sbin/rpc.rusersd
-#
-# /b/source/CVS/src/libexec/rpc.rusersd/Makefile,v 1.2 1993/06/04 14:55:55 brezak Exp
-#
+# $Id: Makefile,v 1.5 1993/08/02 17:50:44 mycroft Exp $
PROG = rpc.rusersd
SRCS = rusersd.c rusers_proc.c
diff --git a/libexec/rpc.rusersd/rpc.rusersd.8 b/libexec/rpc.rusersd/rpc.rusersd.8
index db3e5035dc2..eabdeb324c7 100644
--- a/libexec/rpc.rusersd/rpc.rusersd.8
+++ b/libexec/rpc.rusersd/rpc.rusersd.8
@@ -1,3 +1,5 @@
+.\" -*- nroff -*-
+.\"
.\" Copyright (c) 1985, 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -29,6 +31,8 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
+.\" $Id: rpc.rusersd.8,v 1.2 1993/08/02 17:50:44 mycroft Exp $
+.\"
.Dd June 7, 1993
.Dt RPC.RUSERSD 8
.Os BSD 4.3
diff --git a/libexec/rpc.rusersd/rusers_proc.c b/libexec/rpc.rusersd/rusers_proc.c
index 470f10bb829..c64c78cd2fc 100644
--- a/libexec/rpc.rusersd/rusers_proc.c
+++ b/libexec/rpc.rusersd/rusers_proc.c
@@ -31,6 +31,10 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+static char rcsid[] = "$Id: rusers_proc.c,v 1.5 1993/08/02 17:50:46 mycroft Exp $";
+#endif /* not lint */
+
#include <signal.h>
#include <sys/types.h>
#include <sys/time.h>
diff --git a/libexec/rpc.rusersd/rusersd.c b/libexec/rpc.rusersd/rusersd.c
index c7ceb32c6b1..79d6c22a044 100644
--- a/libexec/rpc.rusersd/rusersd.c
+++ b/libexec/rpc.rusersd/rusersd.c
@@ -31,6 +31,10 @@
* SUCH DAMAGE.
*/
+#ifndef lint
+static char rcsid[] = "$Id: rusersd.c,v 1.4 1993/08/02 17:50:47 mycroft Exp $";
+#endif /* not lint */
+
#include <stdio.h>
#include <rpc/rpc.h>
#include <signal.h>
diff --git a/libexec/rpc.rwalld/Makefile b/libexec/rpc.rwalld/Makefile
index cc25c8aaa9a..960978be282 100644
--- a/libexec/rpc.rwalld/Makefile
+++ b/libexec/rpc.rwalld/Makefile
@@ -1,8 +1,4 @@
-#
-# a makefile for /usr/sbin/rpc.rwalld
-#
-# /b/source/CVS/src/libexec/rpc.rwalld/Makefile,v 1.2 1993/06/04 14:55:58 brezak Exp
-#
+# $Id: Makefile,v 1.4 1993/08/02 17:50:53 mycroft Exp $
PROG = rpc.rwalld
SRCS = rwalld.c
diff --git a/libexec/rpc.rwalld/rpc.rwalld.8 b/libexec/rpc.rwalld/rpc.rwalld.8
index 8a2b69ee9aa..4a42324a363 100644
--- a/libexec/rpc.rwalld/rpc.rwalld.8
+++ b/libexec/rpc.rwalld/rpc.rwalld.8
@@ -1,3 +1,5 @@
+.\" -*- nroff -*-
+.\"
.\" Copyright (c) 1985, 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -29,6 +31,8 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
+.\" $Id: rpc.rwalld.8,v 1.2 1993/08/02 17:50:54 mycroft Exp $
+.\"
.Dd June 7, 1993
.Dt RPC.RWALLD 8
.Os BSD 4.3
diff --git a/libexec/rpc.rwalld/rwalld.c b/libexec/rpc.rwalld/rwalld.c
index f0cfedf61cd..5bdf6e8da93 100644
--- a/libexec/rpc.rwalld/rwalld.c
+++ b/libexec/rpc.rwalld/rwalld.c
@@ -28,8 +28,8 @@
*/
#ifndef lint
-static char rcsid[] = "/b/source/CVS/src/usr.sbin/rwalld/rwalld.c,v 1.2 1993/04/10 17:59:30 cgd Exp";
-#endif
+static char rcsid[] = "$Id: rwalld.c,v 1.2 1993/08/02 17:50:55 mycroft Exp $";
+#endif /* not lint */
#include <unistd.h>
#include <sys/types.h>