diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-01-16 17:11:29 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-01-16 17:11:29 +0000 |
commit | 5f4209f4dc2ab2872c12036f4f7c789d5eeea49c (patch) | |
tree | edd7bde863bb369186805f71b18e4694921b1f97 /sys/nfs/nfs_var.h | |
parent | e87d6dc4ffc8d645d8f39f6356a30fafe6455420 (diff) |
turn nfs_msg into void functions, also make it take an nfsreq
argument since all of the info we need is there, makes it and
the use it a tad bit nicer.
ok blambert@
Diffstat (limited to 'sys/nfs/nfs_var.h')
-rw-r--r-- | sys/nfs/nfs_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_var.h b/sys/nfs/nfs_var.h index 130c8660956..5177db9a949 100644 --- a/sys/nfs/nfs_var.h +++ b/sys/nfs/nfs_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_var.h,v 1.45 2009/01/15 19:41:18 thib Exp $ */ +/* $OpenBSD: nfs_var.h,v 1.46 2009/01/16 17:11:28 thib Exp $ */ /* $NetBSD: nfs_var.h,v 1.3 1996/02/18 11:53:54 fvdl Exp $ */ /* @@ -196,7 +196,7 @@ void nfs_sndunlock(int *); int nfs_rcvlock(struct nfsreq *); void nfs_rcvunlock(int *); int nfs_getreq(struct nfsrv_descript *, struct nfsd *, int); -int nfs_msg(struct proc *, char *, char *); +void nfs_msg(struct nfsreq *, char *); void nfsrv_rcv(struct socket *, caddr_t, int); int nfsrv_getstream(struct nfssvc_sock *, int); int nfsrv_dorec(struct nfssvc_sock *, struct nfsd *, |