diff options
author | rwatson <rwatson@FreeBSD.org> | 2008-10-28 09:12:13 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2008-10-28 09:12:13 +0000 |
commit | fde7dde17456f0e60cecc36078bf69322816859e (patch) | |
tree | fac0c7174a8eb0dd95f8e34dcc720360f72d6229 | |
parent | 14f91d091bbcbec2efd73d33301bf8b346a6b59a (diff) | |
download | FreeBSD-src-fde7dde17456f0e60cecc36078bf69322816859e.zip FreeBSD-src-fde7dde17456f0e60cecc36078bf69322816859e.tar.gz |
Rename label_on_label() to partition_check(), which is far more
suggestive as to its actual function.
Obtained from: TrustedBSD Project
MFC after: 3 days
-rw-r--r-- | sys/security/mac_partition/mac_partition.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/security/mac_partition/mac_partition.c b/sys/security/mac_partition/mac_partition.c index 35a5e7a..d684ea9c 100644 --- a/sys/security/mac_partition/mac_partition.c +++ b/sys/security/mac_partition/mac_partition.c @@ -77,7 +77,7 @@ static int partition_slot; #define SLOT_SET(l, v) mac_label_set((l), partition_slot, (v)) static int -label_on_label(struct label *subject, struct label *object) +partition_check(struct label *subject, struct label *object) { if (partition_enabled == 0) @@ -133,7 +133,7 @@ partition_cred_check_visible(struct ucred *cr1, struct ucred *cr2) { int error; - error = label_on_label(cr1->cr_label, cr2->cr_label); + error = partition_check(cr1->cr_label, cr2->cr_label); return (error == 0 ? 0 : ESRCH); } @@ -209,7 +209,7 @@ partition_inpcb_check_visible(struct ucred *cred, struct inpcb *inp, { int error; - error = label_on_label(cred->cr_label, inp->inp_cred->cr_label); + error = partition_check(cred->cr_label, inp->inp_cred->cr_label); return (error ? ENOENT : 0); } @@ -219,7 +219,7 @@ partition_proc_check_debug(struct ucred *cred, struct proc *p) { int error; - error = label_on_label(cred->cr_label, p->p_ucred->cr_label); + error = partition_check(cred->cr_label, p->p_ucred->cr_label); return (error ? ESRCH : 0); } @@ -229,7 +229,7 @@ partition_proc_check_sched(struct ucred *cred, struct proc *p) { int error; - error = label_on_label(cred->cr_label, p->p_ucred->cr_label); + error = partition_check(cred->cr_label, p->p_ucred->cr_label); return (error ? ESRCH : 0); } @@ -240,7 +240,7 @@ partition_proc_check_signal(struct ucred *cred, struct proc *p, { int error; - error = label_on_label(cred->cr_label, p->p_ucred->cr_label); + error = partition_check(cred->cr_label, p->p_ucred->cr_label); return (error ? ESRCH : 0); } @@ -265,7 +265,7 @@ partition_socket_check_visible(struct ucred *cred, struct socket *so, { int error; - error = label_on_label(cred->cr_label, so->so_cred->cr_label); + error = partition_check(cred->cr_label, so->so_cred->cr_label); return (error ? ENOENT : 0); } |