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/ufs/mfs/mfs_vfsops.c | |
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/ufs/mfs/mfs_vfsops.c')
-rw-r--r-- | sys/ufs/mfs/mfs_vfsops.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index 58a67fc60cc..b7a892d57cf 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mfs_vfsops.c,v 1.19 2002/03/14 01:27:15 millert Exp $ */ +/* $OpenBSD: mfs_vfsops.c,v 1.20 2002/04/23 18:54:12 espie Exp $ */ /* $NetBSD: mfs_vfsops.c,v 1.10 1996/02/09 22:31:28 christos Exp $ */ /* @@ -205,7 +205,8 @@ mfs_mount(mp, path, data, ndp, p) fs->fs_ronly = 0; #ifdef EXPORTMFS if (args.fspec == 0) - return (vfs_export(mp, &ump->um_export, &args.export)); + return (vfs_export(mp, &ump->um_export, + &args.export_info)); #endif return (0); } |