aboutsummaryrefslogtreecommitdiff
path: root/sbin/rcorder
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-06-21 15:56:16 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-06-21 15:56:16 +0000
commitd9bc822f0f8b7cb034916bc7a57cb1a021b6ac22 (patch)
tree2b802895a96440fc5457408aad414f4e5563d8cc /sbin/rcorder
parent06b6d7d8a8ede4223caa3145964cb50f154090eb (diff)
downloadsrc-d9bc822f0f8b7cb034916bc7a57cb1a021b6ac22.tar.gz
src-d9bc822f0f8b7cb034916bc7a57cb1a021b6ac22.zip
Sync with NetBSD.
* don't whine about non-regular files. It is perfectly normal to keep a CVS or RCS directory in /etc/rc.d. * manpage tweak
Notes
Notes: svn path=/vendor/NetBSD/dist/; revision=98567
Diffstat (limited to 'sbin/rcorder')
-rw-r--r--sbin/rcorder/rcorder.84
-rw-r--r--sbin/rcorder/rcorder.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/sbin/rcorder/rcorder.8 b/sbin/rcorder/rcorder.8
index 2ba623b69b17..031e4c91646f 100644
--- a/sbin/rcorder/rcorder.8
+++ b/sbin/rcorder/rcorder.8
@@ -1,4 +1,4 @@
-.\" $NetBSD: rcorder.8,v 1.2 2000/07/05 15:45:30 msaitoh Exp $
+.\" $NetBSD: rcorder.8,v 1.3 2000/07/17 14:16:22 mrg Exp $
.\"
.\" Copyright (c) 1998
.\" Perry E. Metzger. All rights reserved.
@@ -81,7 +81,7 @@ separated by whitespace. Multiple
.Dq BEFORE
and
.Dq KEYWORD
-lines may appear, but all such lines must appear in a sequence without
+lines may appear, but all such lines must appear in a sequence without
any intervening lines, as once a line that does not follow the format
is reached, parsing stops.
.Pp
diff --git a/sbin/rcorder/rcorder.c b/sbin/rcorder/rcorder.c
index 03a397f2b690..4c846e82327a 100644
--- a/sbin/rcorder/rcorder.c
+++ b/sbin/rcorder/rcorder.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rcorder.c,v 1.6 2000/07/19 09:58:03 enami Exp $ */
+/* $NetBSD: rcorder.c,v 1.7 2000/08/04 07:33:55 enami Exp $ */
/*
* Copyright (c) 1998, 1999 Matthew R. Green
@@ -480,7 +480,9 @@ crunch_file(filename)
}
if (!S_ISREG(st.st_mode)) {
+#if 0
warnx("%s is not a file", filename);
+#endif
fclose(fp);
return;
}