diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2003-08-25 23:28:35 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2003-08-25 23:28:35 +0000 |
commit | ea03fe96dd2a572acb0e879c2586bba89034c050 (patch) | |
tree | 2c36d333406df4e19950882dcc7436b2c9831d32 /sbin/fsck_ffs/utilities.c | |
parent | d5eab1b5294489e6eb637cefae0a4efb77c56d22 (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/utilities.c')
-rw-r--r-- | sbin/fsck_ffs/utilities.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsck_ffs/utilities.c b/sbin/fsck_ffs/utilities.c index 67cb63e0672..9a0be2e4233 100644 --- a/sbin/fsck_ffs/utilities.c +++ b/sbin/fsck_ffs/utilities.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utilities.c,v 1.19 2003/06/02 20:06:15 millert Exp $ */ +/* $OpenBSD: utilities.c,v 1.20 2003/08/25 23:28:15 tedu Exp $ */ /* $NetBSD: utilities.c,v 1.18 1996/09/27 22:45:20 christos Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)utilities.c 8.1 (Berkeley) 6/5/93"; #else -static const char rcsid[] = "$OpenBSD: utilities.c,v 1.19 2003/06/02 20:06:15 millert Exp $"; +static const char rcsid[] = "$OpenBSD: utilities.c,v 1.20 2003/08/25 23:28:15 tedu Exp $"; #endif #endif /* not lint */ @@ -63,7 +63,7 @@ long diskreads, totalreads; /* Disk cache statistics */ static void rwerror(char *, daddr_t); int -ftypeok(struct dinode *dp) +ftypeok(struct ufs1_dinode *dp) { switch (dp->di_mode & IFMT) { |