summaryrefslogtreecommitdiff
path: root/sbin/fsck_ffs/pass1.c
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2003-08-25 23:28:35 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2003-08-25 23:28:35 +0000
commitea03fe96dd2a572acb0e879c2586bba89034c050 (patch)
tree2c36d333406df4e19950882dcc7436b2c9831d32 /sbin/fsck_ffs/pass1.c
parentd5eab1b5294489e6eb637cefae0a4efb77c56d22 (diff)
rename struct dinode to ufs1_dinode. clears the namespace and makes
way for some future work. no function changes yet. help testing otto@ and markus@
Diffstat (limited to 'sbin/fsck_ffs/pass1.c')
-rw-r--r--sbin/fsck_ffs/pass1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsck_ffs/pass1.c b/sbin/fsck_ffs/pass1.c
index 873be4d5571..b1d25aa6b9f 100644
--- a/sbin/fsck_ffs/pass1.c
+++ b/sbin/fsck_ffs/pass1.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pass1.c,v 1.13 2003/06/02 20:06:15 millert Exp $ */
+/* $OpenBSD: pass1.c,v 1.14 2003/08/25 23:28:15 tedu Exp $ */
/* $NetBSD: pass1.c,v 1.16 1996/09/27 22:45:15 christos Exp $ */
/*
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)pass1.c 8.1 (Berkeley) 6/5/93";
#else
-static const char rcsid[] = "$OpenBSD: pass1.c,v 1.13 2003/06/02 20:06:15 millert Exp $";
+static const char rcsid[] = "$OpenBSD: pass1.c,v 1.14 2003/08/25 23:28:15 tedu Exp $";
#endif
#endif /* not lint */
@@ -114,7 +114,7 @@ pass1(void)
static void
checkinode(ino_t inumber, struct inodesc *idesc)
{
- struct dinode *dp;
+ struct ufs1_dinode *dp;
struct zlncnt *zlnp;
int ndb, j;
mode_t mode;