diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2002-04-23 18:54:13 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2002-04-23 18:54:13 +0000 |
commit | e9cca0aff478d6a7f8aa989f1f3b5c7796ecbe3b (patch) | |
tree | 5584e842283ad77a56a1c6a443c4ac6d0b4aeca4 /sys/isofs/cd9660 | |
parent | d70cb2c050204739bb31da06800d79bad94f2730 (diff) |
In mount.h, rename field export -> export_info, to avoid collision with C++.
Synch files that use that field.
(This argument is an internal interface specific to OpenBSD, so it won't
cause compatibility problems.)
(No bump, not an ABI change).
ok art, millert...
Diffstat (limited to 'sys/isofs/cd9660')
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index ca478a1aefd..489a81db5b6 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_vfsops.c,v 1.31 2002/03/14 03:16:09 millert Exp $ */ +/* $OpenBSD: cd9660_vfsops.c,v 1.32 2002/04/23 18:54:12 espie Exp $ */ /* $NetBSD: cd9660_vfsops.c,v 1.26 1997/06/13 15:38:58 pk Exp $ */ /*- @@ -160,7 +160,8 @@ cd9660_mount(mp, path, data, ndp, p) if (mp->mnt_flag & MNT_UPDATE) { imp = VFSTOISOFS(mp); if (args.fspec == 0) - return (vfs_export(mp, &imp->im_export, &args.export)); + return (vfs_export(mp, &imp->im_export, + &args.export_info)); } /* * Not an update, or updating the name: look up the name |