aboutsummaryrefslogtreecommitdiff
path: root/sys/security/mac/mac_process.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2003-10-25 15:28:20 +0000
committerRobert Watson <rwatson@FreeBSD.org>2003-10-25 15:28:20 +0000
commitda77b2fa6bf3355ab40ef6047a11108dc1770f77 (patch)
tree689128a35013112f2e1a02fafd158a5ad5cc11a9 /sys/security/mac/mac_process.c
parent65290832bdbb7ca162529a3ed3c3c8b2aeea2d8f (diff)
Notes
Diffstat (limited to 'sys/security/mac/mac_process.c')
-rw-r--r--sys/security/mac/mac_process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/security/mac/mac_process.c b/sys/security/mac/mac_process.c
index 1613b4179781..00c45f8d077c 100644
--- a/sys/security/mac/mac_process.c
+++ b/sys/security/mac/mac_process.c
@@ -152,7 +152,7 @@ mac_externalize_cred_label(struct label *label, char *elements,
{
int error;
- MAC_EXTERNALIZE(cred_label, label, elements, outbuf, outbuflen);
+ MAC_EXTERNALIZE(cred, label, elements, outbuf, outbuflen);
return (error);
}
@@ -162,7 +162,7 @@ mac_internalize_cred_label(struct label *label, char *string)
{
int error;
- MAC_INTERNALIZE(cred_label, label, string);
+ MAC_INTERNALIZE(cred, label, string);
return (error);
}