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/ffs/ffs_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/ffs/ffs_vfsops.c')
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 8cc3a748539..e420dca2f6a 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.52 2002/03/14 01:27:14 millert Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.53 2002/04/23 18:54:12 espie Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -309,7 +309,8 @@ ffs_mount(mp, path, data, ndp, p) /* * Process export requests. */ - error = vfs_export(mp, &ump->um_export, &args.export); + error = vfs_export(mp, &ump->um_export, + &args.export_info); if (error) goto error_1; else |