From a0c84e7de2ecd855bdfc3fdd314a5b7f6f944405 Mon Sep 17 00:00:00 2001 From: christos Date: Fri, 27 Sep 1996 23:22:50 +0000 Subject: [PATCH] util -> fsutil --- sbin/fsck_msdos/Makefile | 4 ++-- sbin/fsck_msdos/boot.c | 6 +++--- sbin/fsck_msdos/check.c | 6 +++--- sbin/fsck_msdos/dir.c | 6 +++--- sbin/fsck_msdos/fat.c | 6 +++--- sbin/fsck_msdos/main.c | 6 +++--- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/sbin/fsck_msdos/Makefile b/sbin/fsck_msdos/Makefile index cf5275951c63..b68a00cdfdd7 100644 --- a/sbin/fsck_msdos/Makefile +++ b/sbin/fsck_msdos/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.2 1996/09/23 16:27:56 christos Exp $ +# $NetBSD: Makefile,v 1.3 1996/09/27 23:22:50 christos Exp $ PROG= fsck_msdos MAN= fsck_msdos.8 -SRCS= main.c check.c boot.c fat.c dir.c util.c +SRCS= main.c check.c boot.c fat.c dir.c fsutil.c CFLAGS+= -I${.CURDIR}/../fsck .PATH: ${.CURDIR}/../fsck diff --git a/sbin/fsck_msdos/boot.c b/sbin/fsck_msdos/boot.c index 112ad70cb180..f36b08e8f044 100644 --- a/sbin/fsck_msdos/boot.c +++ b/sbin/fsck_msdos/boot.c @@ -1,4 +1,4 @@ -/* $NetBSD: boot.c,v 1.2 1996/09/23 16:27:57 christos Exp $ */ +/* $NetBSD: boot.c,v 1.3 1996/09/27 23:22:51 christos Exp $ */ /* * Copyright (C) 1995 Wolfgang Solfrank @@ -34,7 +34,7 @@ #ifndef lint -static char rcsid[] = "$NetBSD: boot.c,v 1.2 1996/09/23 16:27:57 christos Exp $"; +static char rcsid[] = "$NetBSD: boot.c,v 1.3 1996/09/27 23:22:51 christos Exp $"; #endif /* not lint */ #include @@ -44,7 +44,7 @@ static char rcsid[] = "$NetBSD: boot.c,v 1.2 1996/09/23 16:27:57 christos Exp $" #include #include "ext.h" -#include "util.h" +#include "fsutil.h" int readboot(dosfs, boot) diff --git a/sbin/fsck_msdos/check.c b/sbin/fsck_msdos/check.c index cea56a8b8f64..1b83ede4840c 100644 --- a/sbin/fsck_msdos/check.c +++ b/sbin/fsck_msdos/check.c @@ -1,4 +1,4 @@ -/* $NetBSD: check.c,v 1.4 1996/09/23 16:27:57 christos Exp $ */ +/* $NetBSD: check.c,v 1.5 1996/09/27 23:22:52 christos Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank @@ -34,7 +34,7 @@ #ifndef lint -static char rcsid[] = "$NetBSD: check.c,v 1.4 1996/09/23 16:27:57 christos Exp $"; +static char rcsid[] = "$NetBSD: check.c,v 1.5 1996/09/27 23:22:52 christos Exp $"; #endif /* not lint */ #include @@ -45,7 +45,7 @@ static char rcsid[] = "$NetBSD: check.c,v 1.4 1996/09/23 16:27:57 christos Exp $ #include #include "ext.h" -#include "util.h" +#include "fsutil.h" int checkfilesys(fname) diff --git a/sbin/fsck_msdos/dir.c b/sbin/fsck_msdos/dir.c index f49f7f253b94..2c1de8e1604a 100644 --- a/sbin/fsck_msdos/dir.c +++ b/sbin/fsck_msdos/dir.c @@ -1,4 +1,4 @@ -/* $NetBSD: dir.c,v 1.7 1996/09/24 13:17:18 ws Exp $ */ +/* $NetBSD: dir.c,v 1.8 1996/09/27 23:22:52 christos Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank @@ -36,7 +36,7 @@ #ifndef lint -static char rcsid[] = "$NetBSD: dir.c,v 1.7 1996/09/24 13:17:18 ws Exp $"; +static char rcsid[] = "$NetBSD: dir.c,v 1.8 1996/09/27 23:22:52 christos Exp $"; #endif /* not lint */ #include @@ -50,7 +50,7 @@ static char rcsid[] = "$NetBSD: dir.c,v 1.7 1996/09/24 13:17:18 ws Exp $"; #include #include "ext.h" -#include "util.h" +#include "fsutil.h" #define SLOT_EMPTY 0x00 /* slot has never been used */ #define SLOT_E5 0x05 /* the real value is 0xe5 */ diff --git a/sbin/fsck_msdos/fat.c b/sbin/fsck_msdos/fat.c index e2912413fb0e..229e2cd54f30 100644 --- a/sbin/fsck_msdos/fat.c +++ b/sbin/fsck_msdos/fat.c @@ -1,4 +1,4 @@ -/* $NetBSD: fat.c,v 1.3 1996/09/23 16:28:00 christos Exp $ */ +/* $NetBSD: fat.c,v 1.4 1996/09/27 23:22:53 christos Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank @@ -34,7 +34,7 @@ #ifndef lint -static char rcsid[] = "$NetBSD: fat.c,v 1.3 1996/09/23 16:28:00 christos Exp $"; +static char rcsid[] = "$NetBSD: fat.c,v 1.4 1996/09/27 23:22:53 christos Exp $"; #endif /* not lint */ #include @@ -44,7 +44,7 @@ static char rcsid[] = "$NetBSD: fat.c,v 1.3 1996/09/23 16:28:00 christos Exp $"; #include #include "ext.h" -#include "util.h" +#include "fsutil.h" static int checkclnum __P((struct bootblock *, int, cl_t, cl_t *)); static int clustdiffer __P((cl_t, cl_t *, cl_t *, int)); diff --git a/sbin/fsck_msdos/main.c b/sbin/fsck_msdos/main.c index 4ba2959fd564..089a4b925a19 100644 --- a/sbin/fsck_msdos/main.c +++ b/sbin/fsck_msdos/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.5 1996/09/24 13:17:20 ws Exp $ */ +/* $NetBSD: main.c,v 1.6 1996/09/27 23:22:54 christos Exp $ */ /* * Copyright (C) 1995 Wolfgang Solfrank @@ -34,7 +34,7 @@ #ifndef lint -static char rcsid[] = "$NetBSD: main.c,v 1.5 1996/09/24 13:17:20 ws Exp $"; +static char rcsid[] = "$NetBSD: main.c,v 1.6 1996/09/27 23:22:54 christos Exp $"; #endif /* not lint */ #include @@ -49,7 +49,7 @@ static char rcsid[] = "$NetBSD: main.c,v 1.5 1996/09/24 13:17:20 ws Exp $"; #include #endif -#include "util.h" +#include "fsutil.h" #include "ext.h" int alwaysno; /* assume "no" for all questions */