diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2002-04-23 18:55:44 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2002-04-23 18:55:44 +0000 |
commit | 8ad167f07fbda7ec5b939da0fdb029f741646012 (patch) | |
tree | 17b0229ce90a4ea1768b20bf58a119bc2f501260 /lib/libc | |
parent | e9cca0aff478d6a7f8aa989f1f3b5c7796ecbe3b (diff) |
sync doc, export->export_info.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/mount.2 | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/libc/sys/mount.2 b/lib/libc/sys/mount.2 index 549a7231ed5..4ed2779fe91 100644 --- a/lib/libc/sys/mount.2 +++ b/lib/libc/sys/mount.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mount.2,v 1.21 2001/04/22 17:23:56 krw Exp $ +.\" $OpenBSD: mount.2,v 1.22 2002/04/23 18:55:43 espie Exp $ .\" $NetBSD: mount.2,v 1.12 1996/02/29 23:47:48 jtc Exp $ .\" .\" Copyright (c) 1980, 1989, 1993 @@ -130,7 +130,7 @@ their type specific data are: .Bd -literal -offset indent -compact struct adosfs_args { char *fspec; /* blocks special holding fs to mount */ - struct export_args export; + struct export_args export_info; /* network export information */ uid_t uid; /* uid that owns adosfs files */ gid_t gid; /* gid that owns adosfs files */ @@ -142,7 +142,7 @@ struct adosfs_args { .Bd -literal -offset indent -compact struct iso_args { char *fspec; /* block special device to mount */ - struct export_args export; + struct export_args export_info; /* network export info */ int flags; /* mounting flags, see below */ }; @@ -156,7 +156,8 @@ struct iso_args { .Bd -literal -offset indent -compact struct ufs_args { char *fspec; /* block special file to mount */ - struct export_args export; /* network export information */ + struct export_args export_info; + /* network export information */ }; .Ed .Pp @@ -164,7 +165,8 @@ struct ufs_args { .Bd -literal -offset indent -compact struct mfs_args { char *fspec; /* name to export for statfs */ - struct export_args export; /* if we can export an MFS */ + struct export_args export_info; + /* if we can export an MFS */ caddr_t base; /* base of filesystem in mem */ u_long size; /* size of filesystem */ }; @@ -174,7 +176,7 @@ struct mfs_args { .Bd -literal -offset indent -compact struct msdosfs_args { char *fspec; /* blocks special holding fs to mount */ - struct export_args export; + struct export_args export_info; /* network export information */ uid_t uid; /* uid that owns msdosfs files */ gid_t gid; /* gid that owns msdosfs files */ |