summaryrefslogtreecommitdiff
path: root/sys/ufs
diff options
context:
space:
mode:
authorJean-Francois Brousseau <jfb@cvs.openbsd.org>2005-02-17 18:07:38 +0000
committerJean-Francois Brousseau <jfb@cvs.openbsd.org>2005-02-17 18:07:38 +0000
commit47706ecaf12d67a399225153e56f1d84398bfc5a (patch)
tree91e2d50aef16270c2a3d54804708488e708251ce /sys/ufs
parent9a1e8d3a36cfe08049fdc4373b501abf7b1454c1 (diff)
miscellaneous typo fixes:
- sturct -> struct (spotted by pedro) - elimination of consecutive 'the' words ok jmc@, henning@, krw@, robert@, some whining by jolan@
Diffstat (limited to 'sys/ufs')
-rw-r--r--sys/ufs/ffs/ffs_vnops.c4
-rw-r--r--sys/ufs/lfs/lfs_segment.c4
-rw-r--r--sys/ufs/ufs/ufs_inode.c4
-rw-r--r--sys/ufs/ufs/ufs_vnops.c4
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c
index e994cb68c74..2ae13f6714b 100644
--- a/sys/ufs/ffs/ffs_vnops.c
+++ b/sys/ufs/ffs/ffs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs_vnops.c,v 1.31 2004/03/02 05:46:01 tedu Exp $ */
+/* $OpenBSD: ffs_vnops.c,v 1.32 2005/02/17 18:07:37 jfb Exp $ */
/* $NetBSD: ffs_vnops.c,v 1.7 1996/05/11 18:27:24 mycroft Exp $ */
/*
@@ -299,7 +299,7 @@ ffs_reclaim(v)
{
struct vop_reclaim_args /* {
struct vnode *a_vp;
- sturct proc *a_p;
+ struct proc *a_p;
} */ *ap = v;
register struct vnode *vp = ap->a_vp;
int error;
diff --git a/sys/ufs/lfs/lfs_segment.c b/sys/ufs/lfs/lfs_segment.c
index 4e855f5bab4..18e38f828d7 100644
--- a/sys/ufs/lfs/lfs_segment.c
+++ b/sys/ufs/lfs/lfs_segment.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lfs_segment.c,v 1.12 2003/06/02 23:28:23 millert Exp $ */
+/* $OpenBSD: lfs_segment.c,v 1.13 2005/02/17 18:07:37 jfb Exp $ */
/* $NetBSD: lfs_segment.c,v 1.4 1996/02/09 22:28:54 christos Exp $ */
/*
@@ -861,7 +861,7 @@ lfs_writeseg(fs, sp)
* written. To avoid this problem, we allocate memory in chunks, copy
* the buffers into the chunk and write the chunk. MAXPHYS is the
* largest size I/O devices can handle.
- * When the data is copied to the chunk, turn off the the B_LOCKED bit
+ * When the data is copied to the chunk, turn off the B_LOCKED bit
* and brelse the buffer (which will move them to the LRU list). Add
* the B_CALL flag to the buffer header so we can count I/O's for the
* checkpoints and so we can release the allocated memory.
diff --git a/sys/ufs/ufs/ufs_inode.c b/sys/ufs/ufs/ufs_inode.c
index 0bde6dfaff4..a42d85cd004 100644
--- a/sys/ufs/ufs/ufs_inode.c
+++ b/sys/ufs/ufs/ufs_inode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ufs_inode.c,v 1.25 2005/02/17 11:46:39 pedro Exp $ */
+/* $OpenBSD: ufs_inode.c,v 1.26 2005/02/17 18:07:37 jfb Exp $ */
/* $NetBSD: ufs_inode.c,v 1.7 1996/05/11 18:27:52 mycroft Exp $ */
/*
@@ -67,7 +67,7 @@ ufs_inactive(v)
{
struct vop_inactive_args /* {
struct vnode *a_vp;
- sturct proc *a_p;
+ struct proc *a_p;
} */ *ap = v;
struct vnode *vp = ap->a_vp;
struct inode *ip = VTOI(vp);
diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c
index 3c3eb88b5ae..a5edccdb01a 100644
--- a/sys/ufs/ufs/ufs_vnops.c
+++ b/sys/ufs/ufs/ufs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ufs_vnops.c,v 1.59 2004/09/18 22:01:18 tedu Exp $ */
+/* $OpenBSD: ufs_vnops.c,v 1.60 2005/02/17 18:07:37 jfb Exp $ */
/* $NetBSD: ufs_vnops.c,v 1.18 1996/05/11 18:28:04 mycroft Exp $ */
/*
@@ -1697,7 +1697,7 @@ ufs_lock(v)
struct vop_lock_args /* {
struct vnode *a_vp;
int a_flags;
- sturct proc *a_p;
+ struct proc *a_p;
} */ *ap = v;
struct vnode *vp = ap->a_vp;