1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-04 12:52:15 +00:00

VFS_CHECKEXP.9:

Fix typo.
	Fix description.

VFS_FHTOVP.9:
	Fix order in which the manpage says the calls should be made.

PR:		18590
Submitted by:	Anatoly Vorobey <mellon@pobox.com>
This commit is contained in:
Jeroen Ruigrok van der Werven 2000-06-04 15:31:12 +00:00
parent 334705dd0f
commit 7603b950ef
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=61247
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@
.Dt VFS_CHECKEXP 9
.Sh NAME
.Nm VFS_CHECKEXP
.Nd check if vnode is exported to a client
.Nd check if a filesystem is exported to a client
.Sh SYNOPSIS
.Fd #include <sys/param.h>
.Fd #include <sys/mount.h>
@ -52,7 +52,7 @@ Return parameter for the anonymous credentials for this client.
.El
.Pp
This should be called on a file system's mount structure to determine if it
is exported to a client whos address is contained in
is exported to a client whose address is contained in
.Fa nam .
.Pp
It is generally called before

View File

@ -61,7 +61,7 @@ resources have been reused for a new file. For instance, UFS
filesystem stores the inode number and inode generation counter in its
filehandle.
.Pp
A call to this function should generally be followed by a call to
A call to this function should generally be preceded by a call to
.Xr VFS_CHECKEXP 9
to check if the file is accessable to the client
.Pp