diff options
author | dfr <dfr@FreeBSD.org> | 1995-08-24 10:45:16 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1995-08-24 10:45:16 +0000 |
commit | c71eae2a83bfd2ecf4e37db882d02e974ad457e3 (patch) | |
tree | 0c84cae46b51487b1c9b9a19994ce716991865db /sys/nfs/nfs_serv.c | |
parent | 0af2eee79d716c53af10a0fe3d3d7d63ed157799 (diff) | |
download | FreeBSD-src-c71eae2a83bfd2ecf4e37db882d02e974ad457e3.zip FreeBSD-src-c71eae2a83bfd2ecf4e37db882d02e974ad457e3.tar.gz |
Some fixes found using gcc -Wall:
nfsm_rpchead() has been called with the wrong number of args and misplaced
args since someone added new args in the middle for nfsv3.
Here's another one that would be important on 64-bit systems. VOP_READDIR
takes a `u_int **cookies' arg.
Submitted by: Bruce Evans <bde@zeta.org.au>
Diffstat (limited to 'sys/nfs/nfs_serv.c')
-rw-r--r-- | sys/nfs/nfs_serv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c index 54908b3..8eaaaa1 100644 --- a/sys/nfs/nfs_serv.c +++ b/sys/nfs/nfs_serv.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_serv.c 8.3 (Berkeley) 1/12/94 - * $Id: nfs_serv.c,v 1.21 1995/08/03 12:14:16 dfr Exp $ + * $Id: nfs_serv.c,v 1.22 1995/08/06 11:55:25 davidg Exp $ */ /* @@ -2483,7 +2483,7 @@ nfsrv_readdir(nfsd, slp, procp, mrq) int siz, cnt, fullsiz, eofflag, rdonly, cache, ncookies; int v3 = (nfsd->nd_flag & ND_NFSV3); u_quad_t frev, off, toff, verf; - u_long *cookies = NULL, *cookiep; + u_int *cookies = NULL, *cookiep; fhp = &nfh.fh_generic; nfsm_srvmtofh(fhp); @@ -2755,7 +2755,7 @@ nfsrv_readdirplus(nfsd, slp, procp, mrq) int len, nlen, rem, xfer, tsiz, i, error = 0, getret = 1; int siz, cnt, fullsiz, eofflag, rdonly, cache, dirlen, ncookies; u_quad_t frev, off, toff, verf; - u_long *cookies = NULL, *cookiep; + u_int *cookies = NULL, *cookiep; fhp = &nfh.fh_generic; nfsm_srvmtofh(fhp); |