platform_external_selinux/libselinux/utils/getenforce.c
Eric Paris 85cfd2fe2e libselinux: use -W and -Werror in utils
Add the flags and fix the one build break.

Signed-off-by: Eric Paris <eparis@redhat.com>
2011-12-05 16:14:17 -05:00

32 lines
547 B
C

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <selinux/selinux.h>
int main(int argc __attribute__ ((unused)),
char **argv __attribute__ ((unused)))
{
int rc;
rc = is_selinux_enabled();
if (rc < 0) {
fputs("getenforce: is_selinux_enabled() failed", stderr);
return 2;
}
if (rc == 1) {
rc = security_getenforce();
if (rc < 0) {
fputs("getenforce: getenforce() failed", stderr);
return 2;
}
if (rc)
puts("Enforcing");
else
puts("Permissive");
} else {
puts("Disabled");
}
return 0;
}