Module Name: src
Committed By: dholland
Date: Sun Jun 21 04:01:40 UTC 2015
Modified Files:
src/sbin/fsck: fsutil.c preen.c
Log Message:
Add used-by comments on source files that are .PATH'd in from elsewhere.
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sbin/fsck/fsutil.c
cvs rdiff -u -r1.31 -r1.32 src/sbin/fsck/preen.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/fsck/fsutil.c
diff -u src/sbin/fsck/fsutil.c:1.25 src/sbin/fsck/fsutil.c:1.26
--- src/sbin/fsck/fsutil.c:1.25 Sun Jun 21 03:58:36 2015
+++ src/sbin/fsck/fsutil.c Sun Jun 21 04:01:40 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: fsutil.c,v 1.25 2015/06/21 03:58:36 dholland Exp $ */
+/* $NetBSD: fsutil.c,v 1.26 2015/06/21 04:01:40 dholland Exp $ */
/*
* Copyright (c) 1990, 1993
@@ -31,9 +31,20 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: fsutil.c,v 1.25 2015/06/21 03:58:36 dholland Exp $");
+__RCSID("$NetBSD: fsutil.c,v 1.26 2015/06/21 04:01:40 dholland Exp $");
#endif /* not lint */
+/*
+ * used by sbin/fsck
+ * used by sbin/fsck_ext2fs
+ * used by sbin/fsck_ffs
+ * used by sbin/fsck_lfs
+ * used by sbin/fsck_msdos
+ * used by sbin/fsck_v7fs
+ * used by sbin/fsdb
+ * used by usr.sbin/quotacheck
+ */
+
#include <sys/param.h>
#include <stdio.h>
Index: src/sbin/fsck/preen.c
diff -u src/sbin/fsck/preen.c:1.31 src/sbin/fsck/preen.c:1.32
--- src/sbin/fsck/preen.c:1.31 Sat Apr 7 04:52:20 2012
+++ src/sbin/fsck/preen.c Sun Jun 21 04:01:40 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: preen.c,v 1.31 2012/04/07 04:52:20 christos Exp $ */
+/* $NetBSD: preen.c,v 1.32 2015/06/21 04:01:40 dholland Exp $ */
/*
* Copyright (c) 1990, 1993
@@ -34,10 +34,15 @@
#if 0
static char sccsid[] = "@(#)preen.c 8.5 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: preen.c,v 1.31 2012/04/07 04:52:20 christos Exp $");
+__RCSID("$NetBSD: preen.c,v 1.32 2015/06/21 04:01:40 dholland Exp $");
#endif
#endif /* not lint */
+/*
+ * used by sbin/fsck
+ * used by usr.sbin/quotacheck
+ */
+
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/wait.h>