diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2003-12-06 21:48:03 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2003-12-06 21:48:03 +0000 |
| commit | 56d9e932072f81ebaa7bb1bf5995a46813bc91c4 (patch) | |
| tree | 80bf1fc6acf72a565465aa4b66b0dba3b2b80af2 /sys/security/mac/mac_process.c | |
| parent | 302e8edbe896cca55f36187a0a551b1f4a89103b (diff) | |
Notes
Diffstat (limited to 'sys/security/mac/mac_process.c')
| -rw-r--r-- | sys/security/mac/mac_process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/security/mac/mac_process.c b/sys/security/mac/mac_process.c index 68d847dcfb4e..5c82e7c69112 100644 --- a/sys/security/mac/mac_process.c +++ b/sys/security/mac/mac_process.c @@ -222,10 +222,10 @@ mac_thread_userret(struct thread *td) * deltas. This function allows that processing to take place. */ void -mac_create_cred(struct ucred *parent_cred, struct ucred *child_cred) +mac_copy_cred(struct ucred *src, struct ucred *dest) { - MAC_PERFORM(create_cred, parent_cred, child_cred); + MAC_PERFORM(copy_cred_label, src->cr_label, dest->cr_label); } int |
