diff options
author | rwatson <rwatson@FreeBSD.org> | 2002-10-22 17:19:06 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2002-10-22 17:19:06 +0000 |
commit | 7b35ce62ba875845f29910158e53beeab5c1c889 (patch) | |
tree | 9ba19447c22007a11f45fe2f53cec2f6ea85166c /sys/security/mac/mac_framework.h | |
parent | a5a8d4e8e02de21d79b5e173990203f4d34957b4 (diff) | |
download | FreeBSD-src-7b35ce62ba875845f29910158e53beeab5c1c889.zip FreeBSD-src-7b35ce62ba875845f29910158e53beeab5c1c889.tar.gz |
Remove the mac_te policy bits from 'struct oldmac' -- we're not going
to merge mac_te, since the SEBSD port of SELinux/FLASK provides a much
more mature Type Enforcement implementation. This changes the size
of the on-disk 'struct oldmac' EA labels, which may require regeneration.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
Diffstat (limited to 'sys/security/mac/mac_framework.h')
-rw-r--r-- | sys/security/mac/mac_framework.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/security/mac/mac_framework.h b/sys/security/mac/mac_framework.h index 5c094be..bcf36e0 100644 --- a/sys/security/mac/mac_framework.h +++ b/sys/security/mac/mac_framework.h @@ -142,11 +142,6 @@ struct mac_mls { struct mac_mls_element mm_rangelow, mm_rangehigh; }; -#define MAC_TE_TYPE_MAXLEN 32 -struct mac_te { - char mt_type[MAC_TE_TYPE_MAXLEN]; -}; - struct mac_sebsd { uint32_t ms_psid; }; @@ -155,7 +150,6 @@ struct oldmac { int m_macflags; struct mac_biba m_biba; struct mac_mls m_mls; - struct mac_te m_te; struct mac_sebsd m_sebsd; }; |