diff options
author | rwatson <rwatson@FreeBSD.org> | 2006-12-20 23:17:34 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2006-12-20 23:17:34 +0000 |
commit | 08ad649b5f2dcb8857e390ad30a032d4e17fec57 (patch) | |
tree | b0744754aeb8167ce69fb1d68230f2c5f4d55683 /sys/security | |
parent | b8ec51a0644d5d4a236c0c33065626ec72465e69 (diff) | |
download | FreeBSD-src-08ad649b5f2dcb8857e390ad30a032d4e17fec57.zip FreeBSD-src-08ad649b5f2dcb8857e390ad30a032d4e17fec57.tar.gz |
Trim trailing white space.
Diffstat (limited to 'sys/security')
-rw-r--r-- | sys/security/mac/mac_posix_sem.c | 4 | ||||
-rw-r--r-- | sys/security/mac/mac_sysv_msg.c | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sys/security/mac/mac_posix_sem.c b/sys/security/mac/mac_posix_sem.c index 5e3941f..ec05587 100644 --- a/sys/security/mac/mac_posix_sem.c +++ b/sys/security/mac/mac_posix_sem.c @@ -64,7 +64,7 @@ mac_posix_sem_label_alloc(void) return (label); } -void +void mac_init_posix_sem(struct ksem *ksemptr) { @@ -86,7 +86,7 @@ mac_destroy_posix_sem(struct ksem *ksemptr) ksemptr->ks_label = NULL; } -void +void mac_create_posix_sem(struct ucred *cred, struct ksem *ksemptr) { diff --git a/sys/security/mac/mac_sysv_msg.c b/sys/security/mac/mac_sysv_msg.c index 86ae8a8..8e66281 100644 --- a/sys/security/mac/mac_sysv_msg.c +++ b/sys/security/mac/mac_sysv_msg.c @@ -127,18 +127,18 @@ mac_destroy_sysv_msgqueue(struct msqid_kernel *msqkptr) } void -mac_create_sysv_msgmsg(struct ucred *cred, struct msqid_kernel *msqkptr, +mac_create_sysv_msgmsg(struct ucred *cred, struct msqid_kernel *msqkptr, struct msg *msgptr) { - - MAC_PERFORM(create_sysv_msgmsg, cred, msqkptr, msqkptr->label, + + MAC_PERFORM(create_sysv_msgmsg, cred, msqkptr, msqkptr->label, msgptr, msgptr->label); } void mac_create_sysv_msgqueue(struct ucred *cred, struct msqid_kernel *msqkptr) { - + MAC_PERFORM(create_sysv_msgqueue, cred, msqkptr, msqkptr->label); } @@ -152,7 +152,7 @@ mac_cleanup_sysv_msgmsg(struct msg *msgptr) void mac_cleanup_sysv_msgqueue(struct msqid_kernel *msqkptr) { - + MAC_PERFORM(cleanup_sysv_msgqueue, msqkptr->label); } |