summaryrefslogtreecommitdiff
path: root/sbin/fsck
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2002-10-08 05:39:08 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2002-10-08 05:39:08 +0000
commite1b05e3a6cd90b0bf91b47aeff71da2a9d048a9d (patch)
treed57c49002f2656171c2f00359a26c3e3f414b6ad /sbin/fsck
parent7d5bc6320988857ad6ae9fe1d002ad6d8a7af0dd (diff)
Diffstat (limited to 'sbin/fsck')
-rw-r--r--sbin/fsck/Makefile2
-rw-r--r--sbin/fsck/dir.c2
-rw-r--r--sbin/fsck/fsck.82
-rw-r--r--sbin/fsck/fsck.h2
-rw-r--r--sbin/fsck/fsutil.c2
-rw-r--r--sbin/fsck/fsutil.h2
-rw-r--r--sbin/fsck/inode.c2
-rw-r--r--sbin/fsck/main.c2
-rw-r--r--sbin/fsck/pass1.c2
-rw-r--r--sbin/fsck/pass1b.c2
-rw-r--r--sbin/fsck/pass2.c2
-rw-r--r--sbin/fsck/pass3.c2
-rw-r--r--sbin/fsck/pass4.c2
-rw-r--r--sbin/fsck/pass5.c2
-rw-r--r--sbin/fsck/preen.c2
-rw-r--r--sbin/fsck/setup.c2
-rw-r--r--sbin/fsck/utilities.c2
17 files changed, 17 insertions, 17 deletions
diff --git a/sbin/fsck/Makefile b/sbin/fsck/Makefile
index 711c7f4fe80a..e3ada3fbd168 100644
--- a/sbin/fsck/Makefile
+++ b/sbin/fsck/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.2 (Berkeley) 4/27/95
-# $FreeBSD$
+# $FreeBSD: src/sbin/fsck/Makefile,v 1.5.6.1 2001/04/25 10:58:17 ru Exp $
PROG= fsck
MAN= fsck.8
diff --git a/sbin/fsck/dir.c b/sbin/fsck/dir.c
index f5fb6a0ef30a..e36e7db95fda 100644
--- a/sbin/fsck/dir.c
+++ b/sbin/fsck/dir.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)dir.c 8.8 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/dir.c,v 1.15 1999/08/28 00:12:45 peter Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/fsck.8 b/sbin/fsck/fsck.8
index 3a4bbe994697..b77fbfa455f8 100644
--- a/sbin/fsck/fsck.8
+++ b/sbin/fsck/fsck.8
@@ -31,7 +31,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)fsck.8 8.4 (Berkeley) 5/9/95
-.\" $FreeBSD$
+.\" $FreeBSD: src/sbin/fsck/fsck.8,v 1.14.2.3 2001/01/23 23:11:07 iedowse Exp $
.\"
.Dd November 15, 1996
.Dt FSCK 8
diff --git a/sbin/fsck/fsck.h b/sbin/fsck/fsck.h
index 529564eb12c9..e51b3ceb5fc7 100644
--- a/sbin/fsck/fsck.h
+++ b/sbin/fsck/fsck.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)fsck.h 8.4 (Berkeley) 5/9/95
- * $FreeBSD$
+ * $FreeBSD: src/sbin/fsck/fsck.h,v 1.12.2.1 2001/01/23 23:11:07 iedowse Exp $
*/
#include <unistd.h>
diff --git a/sbin/fsck/fsutil.c b/sbin/fsck/fsutil.c
index a7a89aa4683d..2484b83d5626 100644
--- a/sbin/fsck/fsutil.c
+++ b/sbin/fsck/fsutil.c
@@ -32,7 +32,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/fsck/fsutil.c,v 1.2.2.1 2001/08/01 05:47:55 obrien Exp $
*/
#include <sys/cdefs.h>
diff --git a/sbin/fsck/fsutil.h b/sbin/fsck/fsutil.h
index 19f85fd946be..ec3212c7dbb5 100644
--- a/sbin/fsck/fsutil.h
+++ b/sbin/fsck/fsutil.h
@@ -28,7 +28,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sbin/fsck/fsutil.h,v 1.3.2.1 2001/08/01 05:47:55 obrien Exp $
*/
void perror __P((const char *));
diff --git a/sbin/fsck/inode.c b/sbin/fsck/inode.c
index dbf86f760f81..7dedc3d10dd8 100644
--- a/sbin/fsck/inode.c
+++ b/sbin/fsck/inode.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)inode.c 8.8 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/inode.c,v 1.20 2000/02/28 20:02:41 mckusick Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/main.c b/sbin/fsck/main.c
index 827ae01cf365..a019295b4af5 100644
--- a/sbin/fsck/main.c
+++ b/sbin/fsck/main.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/14/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/main.c,v 1.21.2.1 2001/01/23 23:11:07 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/pass1.c b/sbin/fsck/pass1.c
index 3af7d479f2a8..064907fa9208 100644
--- a/sbin/fsck/pass1.c
+++ b/sbin/fsck/pass1.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass1.c 8.6 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/pass1.c,v 1.16.2.5 2002/06/23 22:34:58 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/pass1b.c b/sbin/fsck/pass1b.c
index 9a37c1d5dc4c..2f06c65ebbc8 100644
--- a/sbin/fsck/pass1b.c
+++ b/sbin/fsck/pass1b.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass1b.c 8.4 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/pass1b.c,v 1.7.2.1 2001/01/23 23:11:07 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/pass2.c b/sbin/fsck/pass2.c
index 46c2b1350f64..562f42986dbc 100644
--- a/sbin/fsck/pass2.c
+++ b/sbin/fsck/pass2.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass2.c 8.9 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/pass2.c,v 1.10.2.2 2001/11/24 15:14:59 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/pass3.c b/sbin/fsck/pass3.c
index 730af5ff4420..6bb3afb685e0 100644
--- a/sbin/fsck/pass3.c
+++ b/sbin/fsck/pass3.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass3.c 8.2 (Berkeley) 4/27/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/pass3.c,v 1.7.2.1 2001/01/23 23:11:07 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/pass4.c b/sbin/fsck/pass4.c
index 9e9cea57b922..c20c61d5b747 100644
--- a/sbin/fsck/pass4.c
+++ b/sbin/fsck/pass4.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass4.c 8.4 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/pass4.c,v 1.7.2.1 2001/01/23 23:11:07 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/pass5.c b/sbin/fsck/pass5.c
index bf58d8af08d0..aa5a502a3ff5 100644
--- a/sbin/fsck/pass5.c
+++ b/sbin/fsck/pass5.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)pass5.c 8.9 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/pass5.c,v 1.17.2.1 2001/01/23 23:11:07 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/preen.c b/sbin/fsck/preen.c
index e43aada8d10d..51943b259843 100644
--- a/sbin/fsck/preen.c
+++ b/sbin/fsck/preen.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)preen.c 8.5 (Berkeley) 4/28/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/preen.c,v 1.16 1999/12/30 16:32:40 peter Exp $";
#endif /* not lint */
#include <sys/param.h>
diff --git a/sbin/fsck/setup.c b/sbin/fsck/setup.c
index 0fc4df346467..bd14251d0f9d 100644
--- a/sbin/fsck/setup.c
+++ b/sbin/fsck/setup.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)setup.c 8.10 (Berkeley) 5/9/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/setup.c,v 1.17.2.4 2002/06/24 05:10:41 dillon Exp $";
#endif /* not lint */
#define DKTYPENAMES
diff --git a/sbin/fsck/utilities.c b/sbin/fsck/utilities.c
index 00fa7780fbac..ecc738d41695 100644
--- a/sbin/fsck/utilities.c
+++ b/sbin/fsck/utilities.c
@@ -36,7 +36,7 @@
static const char sccsid[] = "@(#)utilities.c 8.6 (Berkeley) 5/19/95";
#endif
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sbin/fsck/utilities.c,v 1.11.2.3 2001/01/23 23:11:07 iedowse Exp $";
#endif /* not lint */
#include <sys/param.h>