summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2003-10-22 04:45:55 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2003-10-22 04:45:55 +0000
commit569d7afaa44e694a6c7b8afd650200e1194959de (patch)
treed8f9512a0b7681e2675a71f6b2f849ecab664343 /lib
parent40e6dcbe9d4bf04f8dc3a1718b8a1fcc39584fdf (diff)
typos from Jared Yanovich;
also sync with header, and change spacing a little to prevent line breaks;
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/sys/nfssvc.218
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libc/sys/nfssvc.2 b/lib/libc/sys/nfssvc.2
index a4a4e32b560..1dcb3473696 100644
--- a/lib/libc/sys/nfssvc.2
+++ b/lib/libc/sys/nfssvc.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: nfssvc.2,v 1.16 2003/06/02 20:18:39 millert Exp $
+.\" $OpenBSD: nfssvc.2,v 1.17 2003/10/22 04:45:54 jmc Exp $
.\" $NetBSD: nfssvc.2,v 1.6 1995/02/27 12:35:08 cgd Exp $
.\"
.\" Copyright (c) 1989, 1991, 1993
@@ -67,7 +67,7 @@ See
.Xr nfsd 8
and
.Xr sysctl 8
-for futher discussion.
+for further discussion.
For
.Nm NQNFS ,
.Xr mount_nfs 8
@@ -85,9 +85,9 @@ struct nfsd_cargs {
char *ncd_dirp; /* Mount dir path */
uid_t ncd_authuid; /* Effective uid */
int ncd_authtype; /* Type of authenticator */
- int ncd_authlen; /* Length of authenticator string */
+ u_int ncd_authlen; /* Length of authenticator string */
u_char *ncd_authstr; /* Authenticator string */
- int ncd_verflen; /* and the verifier */
+ u_int ncd_verflen; /* and the verifier */
u_char *ncd_verfstr;
NFSKERBKEY_T ncd_key; /* Session key */
};
@@ -138,13 +138,13 @@ is called with the flag
and a pointer to a
.Bd -literal
struct nfsd_srvargs {
- struct nfsd *nsd_nfsd; /* Pointer to in kernel nfsd struct */
+ struct nfsd *nsd_nfsd; /* Pointer to in kernel nfsd struct */
uid_t nsd_uid; /* Effective uid mapped to cred */
u_int32_t nsd_haddr; /* IP address of client */
struct ucred nsd_cr; /* Cred. uid maps to */
int nsd_authlen; /* Length of auth string (ret) */
u_char *nsd_authstr; /* Auth string (ret) */
- int nsd_verflen; /* and the verfier */
+ int nsd_verflen; /* and the verifier */
u_char *nsd_verfstr;
struct timeval nsd_timestamp; /* timestamp from verifier */
u_int32_t nsd_ttl; /* credential ttl (sec) */
@@ -202,9 +202,9 @@ with the flag
and a pointer to a
.Bd -literal
struct nfsd_args {
- int sock; /* Socket to serve */
- caddr_t name; /* Client address for connection based sockets */
- int namelen; /* Length of name */
+ int sock; /* Socket to serve */
+ caddr_t name; /* Client address for connection based sockets */
+ int namelen; /* Length of name */
};
.Ed
.Pp