mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
Added a used include.
Fixed a gratuitous ANSIism and nearby KNF violations.
This commit is contained in:
parent
b1c3237adf
commit
3b1e500f27
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31886
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94
|
||||
* $Id: nfs_subs.c,v 1.46 1997/10/28 15:59:08 bde Exp $
|
||||
* $Id: nfs_subs.c,v 1.47 1997/11/07 08:53:24 phk Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -43,6 +43,7 @@
|
||||
* copy data between mbuf chains and uio lists.
|
||||
*/
|
||||
#include <sys/param.h>
|
||||
#include <sys/buf.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
@ -2081,11 +2082,13 @@ nfsrv_errmap(nd, err)
|
||||
}
|
||||
|
||||
int
|
||||
nfsrv_object_create(struct vnode *vp) {
|
||||
nfsrv_object_create(vp)
|
||||
struct vnode *vp;
|
||||
{
|
||||
|
||||
if ((vp == NULL) || (vp->v_type != VREG))
|
||||
return 1;
|
||||
return vfs_object_create(vp, curproc, curproc?curproc->p_ucred:NULL, 1);
|
||||
if (vp == NULL || vp->v_type != VREG)
|
||||
return (1);
|
||||
return (vfs_object_create(vp, curproc,
|
||||
curproc ? curproc->p_ucred : NULL, 1));
|
||||
}
|
||||
#endif /* NFS_NOSERVER */
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94
|
||||
* $Id: nfs_subs.c,v 1.46 1997/10/28 15:59:08 bde Exp $
|
||||
* $Id: nfs_subs.c,v 1.47 1997/11/07 08:53:24 phk Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -43,6 +43,7 @@
|
||||
* copy data between mbuf chains and uio lists.
|
||||
*/
|
||||
#include <sys/param.h>
|
||||
#include <sys/buf.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
@ -2081,11 +2082,13 @@ nfsrv_errmap(nd, err)
|
||||
}
|
||||
|
||||
int
|
||||
nfsrv_object_create(struct vnode *vp) {
|
||||
nfsrv_object_create(vp)
|
||||
struct vnode *vp;
|
||||
{
|
||||
|
||||
if ((vp == NULL) || (vp->v_type != VREG))
|
||||
return 1;
|
||||
return vfs_object_create(vp, curproc, curproc?curproc->p_ucred:NULL, 1);
|
||||
if (vp == NULL || vp->v_type != VREG)
|
||||
return (1);
|
||||
return (vfs_object_create(vp, curproc,
|
||||
curproc ? curproc->p_ucred : NULL, 1));
|
||||
}
|
||||
#endif /* NFS_NOSERVER */
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94
|
||||
* $Id: nfs_subs.c,v 1.46 1997/10/28 15:59:08 bde Exp $
|
||||
* $Id: nfs_subs.c,v 1.47 1997/11/07 08:53:24 phk Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -43,6 +43,7 @@
|
||||
* copy data between mbuf chains and uio lists.
|
||||
*/
|
||||
#include <sys/param.h>
|
||||
#include <sys/buf.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
@ -2081,11 +2082,13 @@ nfsrv_errmap(nd, err)
|
||||
}
|
||||
|
||||
int
|
||||
nfsrv_object_create(struct vnode *vp) {
|
||||
nfsrv_object_create(vp)
|
||||
struct vnode *vp;
|
||||
{
|
||||
|
||||
if ((vp == NULL) || (vp->v_type != VREG))
|
||||
return 1;
|
||||
return vfs_object_create(vp, curproc, curproc?curproc->p_ucred:NULL, 1);
|
||||
if (vp == NULL || vp->v_type != VREG)
|
||||
return (1);
|
||||
return (vfs_object_create(vp, curproc,
|
||||
curproc ? curproc->p_ucred : NULL, 1));
|
||||
}
|
||||
#endif /* NFS_NOSERVER */
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)nfs_subs.c 8.3 (Berkeley) 1/4/94
|
||||
* $Id: nfs_subs.c,v 1.46 1997/10/28 15:59:08 bde Exp $
|
||||
* $Id: nfs_subs.c,v 1.47 1997/11/07 08:53:24 phk Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -43,6 +43,7 @@
|
||||
* copy data between mbuf chains and uio lists.
|
||||
*/
|
||||
#include <sys/param.h>
|
||||
#include <sys/buf.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/kernel.h>
|
||||
@ -2081,11 +2082,13 @@ nfsrv_errmap(nd, err)
|
||||
}
|
||||
|
||||
int
|
||||
nfsrv_object_create(struct vnode *vp) {
|
||||
nfsrv_object_create(vp)
|
||||
struct vnode *vp;
|
||||
{
|
||||
|
||||
if ((vp == NULL) || (vp->v_type != VREG))
|
||||
return 1;
|
||||
return vfs_object_create(vp, curproc, curproc?curproc->p_ucred:NULL, 1);
|
||||
if (vp == NULL || vp->v_type != VREG)
|
||||
return (1);
|
||||
return (vfs_object_create(vp, curproc,
|
||||
curproc ? curproc->p_ucred : NULL, 1));
|
||||
}
|
||||
#endif /* NFS_NOSERVER */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user