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
This commit is contained in:
Robert Watson 2002-10-22 17:19:06 +00:00
parent 979187053d
commit f0ed8fc408
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105729
2 changed files with 0 additions and 12 deletions

View File

@ -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;
};

View File

@ -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;
};