diff options
author | 2016-10-17 01:16:22 +0000 | |
---|---|---|
committer | 2016-10-17 01:16:22 +0000 | |
commit | 4af638d78c5e8dfcc5a7871d4bb63ff033dd441c (patch) | |
tree | 6d4042ae17c40794401f4bc68c8f31bb79fd7e9b /usr.sbin/makefs/msdos.h | |
parent | Only a few apple-specific bits are needed by eltorito, so copy them local. (diff) | |
download | wireguard-openbsd-4af638d78c5e8dfcc5a7871d4bb63ff033dd441c.tar.xz wireguard-openbsd-4af638d78c5e8dfcc5a7871d4bb63ff033dd441c.zip |
mechanical rename of vnode to mkfsvnode and buf to mkfsbuf to avoid
collisions with the kernel structures of the same name.
caught one bug where the wrong header was being included.
Diffstat (limited to 'usr.sbin/makefs/msdos.h')
-rw-r--r-- | usr.sbin/makefs/msdos.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/makefs/msdos.h b/usr.sbin/makefs/msdos.h index 796777af22d..68960ae83c2 100644 --- a/usr.sbin/makefs/msdos.h +++ b/usr.sbin/makefs/msdos.h @@ -1,4 +1,4 @@ -/* $OpenBSD: msdos.h,v 1.2 2016/10/16 20:26:56 natano Exp $ */ +/* $OpenBSD: msdos.h,v 1.3 2016/10/17 01:16:22 tedu Exp $ */ /* $NetBSD: msdos.h,v 1.3 2015/10/16 16:40:02 christos Exp $ */ /*- @@ -30,11 +30,11 @@ * POSSIBILITY OF SUCH DAMAGE. */ -struct vnode; +struct mkfsvnode; struct denode; -struct msdosfsmount *msdosfs_mount(struct vnode *, int); -int msdosfs_root(struct msdosfsmount *, struct vnode *); +struct msdosfsmount *msdosfs_mount(struct mkfsvnode *, int); +int msdosfs_root(struct msdosfsmount *, struct mkfsvnode *); struct denode *msdosfs_mkfile(const char *, struct denode *, fsnode *); struct denode *msdosfs_mkdire(const char *, struct denode *, fsnode *); |