Merge "Fix typo" am: dec467f271
am: 7f114540d8
Change-Id: Iaa6bceebdab147a9e332c2db511aac9242474e3a
This commit is contained in:
commit
4fc8a5c20a
1 changed files with 2 additions and 1 deletions
|
|
@ -439,7 +439,8 @@ void SelinuxInitialize() {
|
|||
bool is_enforcing = IsEnforcing();
|
||||
if (kernel_enforcing != 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