diff options
author | rwatson <rwatson@FreeBSD.org> | 2007-03-05 13:10:58 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2007-03-05 13:10:58 +0000 |
commit | 69938bd19626ef8e176215880689a282503f8eca (patch) | |
tree | 2dd9323b62ee1cbf7eb55c41c1cc9c518ebd0111 /sys/kern/kern_acl.c | |
parent | bc98d02991feca044590da3d2fccb75e6f3f21da (diff) | |
download | FreeBSD-src-69938bd19626ef8e176215880689a282503f8eca.zip FreeBSD-src-69938bd19626ef8e176215880689a282503f8eca.tar.gz |
Further system call comment cleanup:
- Remove also "MP SAFE" after prior "MPSAFE" pass. (suggested by bde)
- Remove extra blank lines in some cases.
- Add extra blank lines in some cases.
- Remove no-op comments consisting solely of the function name, the word
"syscall", or the system call name.
- Add punctuation.
- Re-wrap some comments.
Diffstat (limited to 'sys/kern/kern_acl.c')
-rw-r--r-- | sys/kern/kern_acl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_acl.c b/sys/kern/kern_acl.c index 0a276a2..c2456be 100644 --- a/sys/kern/kern_acl.c +++ b/sys/kern/kern_acl.c @@ -264,7 +264,7 @@ __acl_set_link(struct thread *td, struct __acl_set_link_args *uap) } /* - * Given a file descriptor, get an ACL for it + * Given a file descriptor, get an ACL for it. */ int __acl_get_fd(struct thread *td, struct __acl_get_fd_args *uap) @@ -283,7 +283,7 @@ __acl_get_fd(struct thread *td, struct __acl_get_fd_args *uap) } /* - * Given a file descriptor, set an ACL for it + * Given a file descriptor, set an ACL for it. */ int __acl_set_fd(struct thread *td, struct __acl_set_fd_args *uap) |