table of contents
selinux_file_context_cmp(3) | Library Functions Manual | selinux_file_context_cmp(3) |
NAME¶
selinux_file_context_cmp - Compare two SELinux security contexts excluding the 'user' component.SYNOPSIS¶
#include <selinux/selinux.h>const security_context_t
b);
DESCRIPTION¶
selinux_file_context_cmp compares two context strings excluding the user component with strcmp(3) as shown in the EXAMPLE section.RETURN VALUE¶
The return values follow the strcmp(3) function, where:0 if they are equal.
1 if a is greater than b
-1 if a is less than b
ERRORS¶
None.NOTES¶
The contexts being compared do not specifically need to be file contexts.EXAMPLE¶
If context a is:user_u:user_r:user_t:s0
root:user_r:user_t:s0
:user_r:user_t:s0 and :user_r:user_t:s0
SEE ALSO¶
selinux(8)08 March 2011 | SELinux API documentation |