From c71eae2a83bfd2ecf4e37db882d02e974ad457e3 Mon Sep 17 00:00:00 2001 From: dfr Date: Thu, 24 Aug 1995 10:45:16 +0000 Subject: 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 --- sys/nfsclient/nfsm_subs.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'sys/nfsclient/nfsm_subs.h') diff --git a/sys/nfsclient/nfsm_subs.h b/sys/nfsclient/nfsm_subs.h index 9e89c57..f935b7a 100644 --- a/sys/nfsclient/nfsm_subs.h +++ b/sys/nfsclient/nfsm_subs.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfsm_subs.h 8.1 (Berkeley) 6/16/93 - * $Id: nfsm_subs.h,v 1.6 1995/05/30 08:12:51 rgrimes Exp $ + * $Id: nfsm_subs.h,v 1.7 1995/06/27 11:06:55 dfr Exp $ */ #ifndef _NFS_NFSM_SUBS_H_ @@ -50,7 +50,13 @@ /* * First define what the actual subs. return */ -extern struct mbuf *nfsm_reqh(); +struct mbuf *nfsm_reqh __P((struct vnode *vp, u_long procid, int hsiz, + caddr_t *bposp)); +struct mbuf *nfsm_rpchead __P((struct ucred *cr, int nmflag, int procid, + int auth_type, int auth_len, char *auth_str, + int verf_len, char *verf_str, + struct mbuf *mrest, int mrest_len, + struct mbuf **mbp, u_long *xidp)); #define M_HASCL(m) ((m)->m_flags & M_EXT) #define NFSMINOFF(m) \ -- cgit v1.1