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/restore/restore.h | |
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/restore/restore.h')
-rw-r--r-- | sbin/restore/restore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/restore/restore.h b/sbin/restore/restore.h index b8e0c3612b6..a40fbd36a45 100644 --- a/sbin/restore/restore.h +++ b/sbin/restore/restore.h @@ -1,4 +1,4 @@ -/* $OpenBSD: restore.h,v 1.4 2003/06/02 20:06:16 millert Exp $ */ +/* $OpenBSD: restore.h,v 1.5 2003/08/25 23:28:16 tedu Exp $ */ /* $NetBSD: restore.h,v 1.8 1997/07/01 05:37:54 lukem Exp $ */ /* @@ -107,7 +107,7 @@ struct entry { struct context { char *name; /* name of file */ ino_t ino; /* inumber of file */ - struct dinode *dip; /* pointer to inode */ + struct ufs1_dinode *dip; /* pointer to inode */ char action; /* action being taken on this file */ } curfile; /* actions */ |