diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-10 17:17:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-10 17:17:26 +0000 |
commit | d75c504cf11ea8523f8564dcf5ce5544323ddba1 (patch) | |
tree | f33b51208c32ee0f724b48ad6c24ec12985883d2 /sbin/fsdb/fsdb.h | |
parent | 1b4be1fb0bacf9721e3c4a1a38919d24ad3f2e75 (diff) |
Add support for ffs2 filesystems. From pedro@ based on the ufs2
changes in FreeBSD by Kirk McKusick.
Diffstat (limited to 'sbin/fsdb/fsdb.h')
-rw-r--r-- | sbin/fsdb/fsdb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/fsdb/fsdb.h b/sbin/fsdb/fsdb.h index db42e8f9034..ff0f31f08e0 100644 --- a/sbin/fsdb/fsdb.h +++ b/sbin/fsdb/fsdb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: fsdb.h,v 1.5 2003/08/25 23:28:15 tedu Exp $ */ +/* $OpenBSD: fsdb.h,v 1.6 2007/04/10 17:17:25 millert Exp $ */ /* $NetBSD: fsdb.h,v 1.4 1996/09/28 19:30:36 christos Exp $ */ /*- @@ -54,12 +54,12 @@ struct cmdtable { unsigned int maxargc; int (*handler)(int argc, char *argv[]); }; -extern struct ufs1_dinode *curinode; +extern union dinode *curinode; extern ino_t curinum; char **crack(char *, int *); int argcount(struct cmdtable *, int, char *[]); -void printstat(const char *, ino_t, struct ufs1_dinode *); +void printstat(const char *, ino_t, union dinode *); int checkactive(void); int checkactivedir(void); int printactive(void); |