From 5512694b2561b1ca275008a0533e083483bd8256 Mon Sep 17 00:00:00 2001 From: alfred Date: Sat, 14 Dec 2002 08:18:06 +0000 Subject: unwrap lines made short enough by SCARGS removal --- sys/kern/kern_acl.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'sys/kern/kern_acl.c') diff --git a/sys/kern/kern_acl.c b/sys/kern/kern_acl.c index b194454..d93938f 100644 --- a/sys/kern/kern_acl.c +++ b/sys/kern/kern_acl.c @@ -692,8 +692,7 @@ __acl_get_file(struct thread *td, struct __acl_get_file_args *uap) NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, uap->path, td); error = namei(&nd); if (error == 0) { - error = vacl_get_acl(td, nd.ni_vp, uap->type, - uap->aclp); + error = vacl_get_acl(td, nd.ni_vp, uap->type, uap->aclp); NDFREE(&nd, 0); } mtx_unlock(&Giant); @@ -715,8 +714,7 @@ __acl_set_file(struct thread *td, struct __acl_set_file_args *uap) NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, uap->path, td); error = namei(&nd); if (error == 0) { - error = vacl_set_acl(td, nd.ni_vp, uap->type, - uap->aclp); + error = vacl_set_acl(td, nd.ni_vp, uap->type, uap->aclp); NDFREE(&nd, 0); } mtx_unlock(&Giant); @@ -826,8 +824,7 @@ __acl_aclcheck_file(struct thread *td, struct __acl_aclcheck_file_args *uap) NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, uap->path, td); error = namei(&nd); if (error == 0) { - error = vacl_aclcheck(td, nd.ni_vp, uap->type, - uap->aclp); + error = vacl_aclcheck(td, nd.ni_vp, uap->type, uap->aclp); NDFREE(&nd, 0); } mtx_unlock(&Giant); -- cgit v1.1