summaryrefslogtreecommitdiff
path: root/bsdfsck
diff options
context:
space:
mode:
Diffstat (limited to 'bsdfsck')
-rw-r--r--bsdfsck/ChangeLog98
-rw-r--r--bsdfsck/fsck.h2
-rw-r--r--bsdfsck/preen.c2
-rw-r--r--bsdfsck/utilities.c2
4 files changed, 3 insertions, 101 deletions
diff --git a/bsdfsck/ChangeLog b/bsdfsck/ChangeLog
deleted file mode 100644
index 0a948518..00000000
--- a/bsdfsck/ChangeLog
+++ /dev/null
@@ -1,98 +0,0 @@
-Thu Jul 6 15:30:43 1995 Michael I Bushnell <mib@duality.gnu.ai.mit.edu>
-
- * Makefile (tables.o): Delete target.
- (vpath tables.c): Tell where to find tables.c.
-
- * Makefile: Removed dependencies that are now automatically
- generated.
-
-Thu Nov 3 17:18:35 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * Makefile (dir): Changed to bsdfsck.
- (target): Changed to bsdfsck.
-
-Thu Oct 6 13:19:25 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * dir.c (dircheck): Fix from Charles Hannum: dircheck() shouldn't
- be looking at d_type or d_namlen in blank entries *at all*. Not
- only is it wrong, but it causes a serious problem on little-endian
- machines, since after -c2 conversion, d_type will often be > 15.
-
-Wed Oct 5 12:53:45 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * pass1.c (checkinode) [mode == 0]: Check that di_trans
- is also clear here.
-
- * fsck.h (IFTODT): Provide macro here.
- * inode.c: Not here.
-
-Tue Oct 4 22:42:54 1994 Michael I Bushnell <mib@churchy.gnu.ai.mit.edu>
-
- * inode.c (ckinode) [dino.di_trans set]: Only call IDESC->id_func
- if IDESC->id_type is ADDR (meaning call function for each block).
- If it's DATA, then that means call dirscan on each data block,
- something entirely different.
-
- * inode.c (IFTODT): Provide macro.
-
-Fri Sep 30 21:28:57 1994 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
-
- * Makefile (LCLHDRS): Define.
-
-Fri Sep 16 10:57:04 1994 Michael I Bushnell <mib@churchy.gnu.ai.mit.edu>
-
- * fsck.h (direct): Define macro.
-
-Thu Sep 1 14:51:23 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * inode.c (ckinode): Don't pay attention to fs_maxsymlinklen
- if it's -1.
- * pass1.c (checkinode): Likewise.
-
- * fsck.h (DI_MODE): Use | not & for bitwise disjunction.
-
-Fri Aug 26 12:35:21 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * main.c (main): Don't call checkblock.
-
- * pass5.c (ffs_fragacct): Copy in function from ../ufs/subr.c.
-
- * inode.c (ckinode): Call IDESC->id_func for passive translator
- if it's set.
-
-Thu Aug 25 11:07:05 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * setup.c: Don't include <disklabel.h>.
- (setup): Comment out variable LP and label fetching code.
- (calcsb, getdisklabel): Comment out functions. Replace
- calcsb with one returning constant zero.
-
- * main.c: Don't include <sys/mount.h> or <fstab.h>.
- (main): Don't run checkfstab; just print an error in that case.
- (docheck): Comment out this function.
- (checkfilesys): Comment out special code for HOTROOT.
-
-Wed Aug 24 11:11:23 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * fsck.h (NBBY): Define macro.
-
-Tue Aug 23 15:54:49 1994 Michael I Bushnell <mib@geech.gnu.ai.mit.edu>
-
- * dir.c (fileerror): Use DI_MODE instead of di_mode member.
- (adjust): Likewise.
- (linkup): Likewise.
- * inode.c (ckinode): Likewise.
- (clri): Likewise.
- (pinode): Likewise.
- * pass1.c (checkinode): Likewise.
- * pass2.c (pass2check): Likewise.
- * utilities.c (ftypeok): Likewise.
-
- * inode.c (allocino): Set di_model and di_modeh instead of di_mode.
- * pass1.c (checkinode): Likewise.
- * pass2.c (pass2): Likewise.
-
- * fsck.h (DIRSIZ): Replace ufs version with old BSD version.
- (struct dirtemplate, struct odirtemplate): Proved old BSD types.
- (DEV_BSIZE, MAXPATHLEN): Provide definitions.
- (DI_MODE): New macro.
diff --git a/bsdfsck/fsck.h b/bsdfsck/fsck.h
index c418f66c..04bb7698 100644
--- a/bsdfsck/fsck.h
+++ b/bsdfsck/fsck.h
@@ -209,7 +209,7 @@ struct inodesc {
* To check if a block has been found as a duplicate it is only
* necessary to search from duplist through muldup. To find the
* total number of times that a block has been found as a duplicate
- * the entire list must be searched for occurences of the block
+ * the entire list must be searched for occurrences of the block
* in question. The following diagram shows a sample list where
* w (found twice), x (found once), y (found three times), and z
* (found once) are duplicate block numbers:
diff --git a/bsdfsck/preen.c b/bsdfsck/preen.c
index 7893a5e1..5650f900 100644
--- a/bsdfsck/preen.c
+++ b/bsdfsck/preen.c
@@ -51,7 +51,7 @@ struct part {
struct part *next; /* forward link of partitions on disk */
char *name; /* device name */
char *fsname; /* mounted filesystem name */
- long auxdata; /* auxillary data for application */
+ long auxdata; /* auxiliary data for application */
} *badlist, **badnext = &badlist;
struct disk {
diff --git a/bsdfsck/utilities.c b/bsdfsck/utilities.c
index 2141e7f8..1c281b1b 100644
--- a/bsdfsck/utilities.c
+++ b/bsdfsck/utilities.c
@@ -520,7 +520,7 @@ errexit(s1, s2, s3, s4)
}
/*
- * An unexpected inconsistency occured.
+ * An unexpected inconsistency occurred.
* Die if preening, otherwise just print message and continue.
*/
/* VARARGS1 */