Merge "Fix typo"
This commit is contained in:
commit
dec467f271
1 changed files with 2 additions and 1 deletions
|
|
@ -439,7 +439,8 @@ void SelinuxInitialize() {
|
||||||
bool is_enforcing = IsEnforcing();
|
bool is_enforcing = IsEnforcing();
|
||||||
if (kernel_enforcing != is_enforcing) {
|
if (kernel_enforcing != is_enforcing) {
|
||||||
if (security_setenforce(is_enforcing)) {
|
if (security_setenforce(is_enforcing)) {
|
||||||
PLOG(FATAL) << "security_setenforce(%s) failed" << (is_enforcing ? "true" : "false");
|
PLOG(FATAL) << "security_setenforce(" << (is_enforcing ? "true" : "false")
|
||||||
|
<< ") failed";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue