summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_acl_posix1e.c
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-12-14 08:18:06 +0000
committeralfred <alfred@FreeBSD.org>2002-12-14 08:18:06 +0000
commit5512694b2561b1ca275008a0533e083483bd8256 (patch)
tree5988d4bafee16abb7d4a7d991ebb1155d01b36b9 /sys/kern/subr_acl_posix1e.c
parentc366943770e3324b93b9c11b53a443b2a1ecf9a4 (diff)
downloadFreeBSD-src-5512694b2561b1ca275008a0533e083483bd8256.zip
FreeBSD-src-5512694b2561b1ca275008a0533e083483bd8256.tar.gz
unwrap lines made short enough by SCARGS removal
Diffstat (limited to 'sys/kern/subr_acl_posix1e.c')
-rw-r--r--sys/kern/subr_acl_posix1e.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/kern/subr_acl_posix1e.c b/sys/kern/subr_acl_posix1e.c
index b194454..d93938f 100644
--- a/sys/kern/subr_acl_posix1e.c
+++ b/sys/kern/subr_acl_posix1e.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);
OpenPOWER on IntegriCloud